Stakeholder

stakeholder definition

BookingFlightsHotelsReservationsTravel

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
View JSON Schema on GitHub

JSON Schema

flight-order-management-stakeholder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-schema/flight-order-management-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"
      }
    }
  }
}