Link schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-schema/seat-map-display-link-schema.json", "title": "Link", "description": "Link schema", "type": "object", "properties": { "href": { "type": "string", "format": "uri" }, "methods": { "type": "array", "items": { "type": "string", "enum": [ "GET", "PUT", "DELETE", "POST", "PATCH" ] } }, "count": { "type": "integer" } }, "required": [ "href" ], "example": { "href": "string" } }