{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-structure/seat-map-display-link-structure.json", "name": "Link", "description": "Link schema", "type": "object", "properties": { "href": { "type": "uri" }, "methods": { "type": "array", "items": { "type": "string", "enum": [ "GET", "PUT", "DELETE", "POST", "PATCH" ] } }, "count": { "type": "int32" } }, "required": [ "href" ], "example": { "href": "string" } }