{ "$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-facility-structure.json", "name": "Facility", "description": "Facility schema", "type": "object", "properties": { "code": { "description": "Facility code, as described in the facility dictionary", "type": "string" }, "column": { "type": "string" }, "row": { "type": "string" }, "position": { "type": "string", "description": "Position is either front, rear or seat (in case the facility takes the place of a seat)", "enum": [ "FRONT", "REAR", "SEAT" ] }, "coordinates": { "$ref": "#/definitions/Coordinates" } } }