Amadeus · Schema
Document
the information that are found on an ID document
TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights
Properties
| Name | Type | Description |
|---|---|---|
| number | string | The document number (shown on the document) . E.g. QFU514563221J |
| issuanceDate | string | Date at which the document has been issued. |
| expiryDate | string | Date after which the document is not valid anymore. |
| issuanceCountry | string | [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the country that issued the document |
| issuanceLocation | string | A more precise information concerning the place where the document has been issued, when available. It may be a country, a state, a city or any other type of location. e.g. New-York |
| nationality | string | [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the nationality appearing on the document |
| birthPlace | string | Birth place as indicated on the document |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/seatmap-display-document-schema.json",
"title": "Document",
"description": "the information that are found on an ID document",
"type": "object",
"properties": {
"number": {
"type": "string",
"description": "The document number (shown on the document) . E.g. QFU514563221J",
"example": 1
},
"issuanceDate": {
"type": "string",
"description": "Date at which the document has been issued.",
"format": "date",
"example": "2026-08-15"
},
"expiryDate": {
"type": "string",
"description": "Date after which the document is not valid anymore.",
"format": "date",
"example": "2026-08-15"
},
"issuanceCountry": {
"type": "string",
"description": "[ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the country that issued the document",
"pattern": "[a-zA-Z]{2}",
"example": 1
},
"issuanceLocation": {
"type": "string",
"description": "A more precise information concerning the place where the document has been issued, when available. It may be a country, a state, a city or any other type of location. e.g. New-York",
"example": "string-value"
},
"nationality": {
"type": "string",
"description": "[ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the nationality appearing on the document",
"pattern": "[a-zA-Z]{2}",
"example": "string-value"
},
"birthPlace": {
"type": "string",
"description": "Birth place as indicated on the document",
"example": "string-value"
}
}
}