Uber · Schema

Refund

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
id string Unique refund identifier.
order_id string Associated order identifier.
amount integer Refund amount in cents.
status string Current status of the refund.
created string
View JSON Schema on GitHub

JSON Schema

uber-refund-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Refund",
  "title": "Refund",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique refund identifier."
    },
    "order_id": {
      "type": "string",
      "description": "Associated order identifier."
    },
    "amount": {
      "type": "integer",
      "description": "Refund amount in cents."
    },
    "status": {
      "type": "string",
      "description": "Current status of the refund."
    },
    "created": {
      "type": "string",
      "format": "date-time"
    }
  }
}