Amadeus Solutions · Schema
Stakeholder
stakeholder definition
AirlinesBookingFlightsGDSHotelsTravelTravel Technology
Properties
| Name | Type | Description |
|---|---|---|
| id | string | item identifier |
| dateOfBirth | string | The date of birth in ISO 8601 format (yyyy-mm-dd) |
| gender | object | |
| name | object | |
| documents | array | Advanced Passenger Information - regulatory identity documents - SSR DOCS & DOCO elements |
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-stakeholder-schema.json",
"title": "Stakeholder",
"description": "stakeholder definition",
"type": "object",
"properties": {
"id": {
"description": "item identifier",
"type": "string"
},
"dateOfBirth": {
"type": "string",
"format": "date",
"description": "The date of birth in ISO 8601 format (yyyy-mm-dd)"
},
"gender": {
"$ref": "#/definitions/StakeholderGender"
},
"name": {
"$ref": "#/definitions/Name"
},
"documents": {
"type": "array",
"description": "Advanced Passenger Information - regulatory identity documents - SSR DOCS & DOCO elements",
"items": {
"$ref": "#/definitions/IdentityDocument"
}
}
}
}