Starred Repository
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-users-api-starred-repository-schema.json", "title": "starred-repository", "description": "Starred Repository", "type": "object", "properties": { "starred_at": { "type": "string", "format": "date-time", "example": "2026-04-17T12:00:00Z" }, "repo": { "$ref": "#/components/schemas/repository" } }, "required": [ "starred_at", "repo" ] }