FareRules 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-fare-rules-schema.json", "title": "FareRules", "description": "FareRules schema", "type": "object", "properties": { "currency": { "type": "string", "description": "The currency of the penalties" }, "rules": { "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/TermAndCondition" } } } }