{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GitHubReposResponse", "title": "GitHubReposResponse", "type": "object", "properties": { "repositories": { "type": "array", "items": { "$ref": "#/components/schemas/GitHubRepo" } }, "has_more": { "type": "boolean", "description": "Whether more repositories are available beyond this page." } }, "required": [ "has_more", "repositories" ] }