Uber · Schema

VoucherProgram

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
id string Unique program identifier.
name string
type string
status string
budget number
currency_code string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

uber-voucherprogram-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoucherProgram",
  "title": "VoucherProgram",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique program identifier."
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive",
        "expired"
      ]
    },
    "budget": {
      "type": "number"
    },
    "currency_code": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}