---
title: "DestinationList"
url: "https://developer-acc.schiphol.nl/apis/schiphol-public-flight-api-4-public-acc/versions/fce7b80c-50ca-4174-b37d-04853d2e9ed4/schemas/DestinationList"
---

> Full API specification: https://developer-acc.schiphol.nl/apis/schiphol-public-flight-api-4-public-acc/versions/fce7b80c-50ca-4174-b37d-04853d2e9ed4.md

# DestinationList

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Schiphol Public Flight API
  version: 4.2.0-acc
servers:
  - url: https://{environment}.schiphol.nl/public/public-flights/v4
    variables:
      environment:
        enum:
          - api
          - api-acc
        default: api
components:
  schemas:
    Destination:
      type: object
      properties:
        city:
          type: string
        country:
          type: string
        iata:
          type: string
        publicName:
          $ref: "#/components/schemas/PublicName"
    PublicName:
      type: object
      properties:
        dutch:
          type: string
        english:
          type: string
    DestinationList:
      type: object
      properties:
        destinations:
          type: array
          items:
            $ref: "#/components/schemas/Destination"
```
