Air Products and Chemicals · Schema
GasOrder
A gas supply order to Air Products
Industrial GasesChemicalsEnergyManufacturingHydrogenEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| order_id | string | Order identifier |
| customer_id | string | Customer account number |
| product_id | string | Product ordered |
| quantity | number | Quantity ordered in specified unit |
| unit | string | Unit of measure (SCF, kg, liters) |
| delivery_date | string | Requested delivery date |
| delivery_address | string | Delivery site address |
| status | string | Order status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/air-products-and-chemicals/refs/heads/main/json-schema/airproducts-gas-order-schema.json",
"title": "GasOrder",
"description": "A gas supply order to Air Products",
"type": "object",
"properties": {
"order_id": {
"type": "string",
"description": "Order identifier",
"example": "ORD-2024-789012"
},
"customer_id": {
"type": "string",
"description": "Customer account number",
"example": "CUST-10045"
},
"product_id": {
"type": "string",
"description": "Product ordered",
"example": "N2-BULK-001"
},
"quantity": {
"type": "number",
"description": "Quantity ordered in specified unit",
"example": 10000.0
},
"unit": {
"type": "string",
"description": "Unit of measure (SCF, kg, liters)",
"example": "SCF"
},
"delivery_date": {
"type": "string",
"format": "date",
"description": "Requested delivery date",
"example": "2025-04-30"
},
"delivery_address": {
"type": "string",
"description": "Delivery site address",
"example": "123 Industrial Blvd, Allentown, PA 18105"
},
"status": {
"type": "string",
"description": "Order status",
"example": "Confirmed"
}
}
}