Ticket schema from Flickr API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flickr/refs/heads/main/json-schema/flickr-ticket-schema.json", "title": "Ticket", "description": "Ticket schema from Flickr API", "type": "object", "properties": { "id": { "type": "string", "example": "52345678901" }, "complete": { "type": "integer", "example": 1 }, "photoid": { "type": "string", "example": "52345678901" }, "invalid": { "type": "integer", "example": 0 } } }