{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Repository", "type": "object", "description": "A container image repository in the Quay registry.", "properties": { "namespace": { "type": "string", "description": "The namespace the repository belongs to." }, "name": { "type": "string", "description": "The name of the repository." }, "description": { "type": "string", "description": "A description of the repository." }, "is_public": { "type": "boolean", "description": "Whether the repository is publicly accessible." }, "kind": { "type": "string", "description": "The type of repository." }, "tag_count": { "type": "integer", "description": "The number of tags in the repository." }, "status_token": { "type": "string", "description": "The status token for repository notifications." } } }