{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GitHubRepo", "title": "GitHubRepo", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "full_name": { "type": "string" } }, "required": [ "full_name", "id", "name" ] }