Amadeus Solutions · Schema
TermAndCondition
TermAndCondition schema
AirlinesBookingFlightsGDSHotelsTravelTravel Technology
Properties
| Name | Type | Description |
|---|---|---|
| category | string | This defines what type of modification is concerned in this rule. |
| circumstances | string | |
| notApplicable | boolean | |
| maxPenaltyAmount | string | |
| descriptions | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-schema/flight-offers-price-term-and-condition-schema.json",
"title": "TermAndCondition",
"description": "TermAndCondition schema",
"properties": {
"category": {
"type": "string",
"description": "This defines what type of modification is concerned in this rule.",
"enum": [
"REFUND",
"EXCHANGE",
"REVALIDATION",
"REISSUE",
"REBOOK",
"CANCELLATION"
],
"example": "EXCHANGE"
},
"circumstances": {
"type": "string"
},
"notApplicable": {
"type": "boolean"
},
"maxPenaltyAmount": {
"type": "string"
},
"descriptions": {
"type": "array",
"items": {
"title": "Description",
"properties": {
"descriptionType": {
"type": "string"
},
"text": {
"type": "string"
}
}
}
}
},
"type": "object"
}