---
title: "Flight"
url: "https://kiwi.arashsheyda.me/apis/arararar/versions/f2375a9b-daf0-4b30-9711-91f5db3fe905/schemas/Flight"
---

> Full API specification: https://kiwi.arashsheyda.me/apis/arararar/versions/f2375a9b-daf0-4b30-9711-91f5db3fe905.md

# Flight

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Flight API
  version: 1.0.0
servers:
  - url: https://api.example.com/v1
components:
  schemas:
    Flight:
      type: object
      properties:
        id:
          type: string
        airline:
          type: string
        flight_number:
          type: string
        origin:
          type: string
        destination:
          type: string
        departure_time:
          type: string
          format: date-time
        arrival_time:
          type: string
          format: date-time
        price:
          type: number
          format: float
```
