Aramark · Schema
Product
Product schema from Aramark Marko API
Food ServicesFacilities ManagementUniform ServicesData PlatformFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Product identifier |
| name | string | Product name |
| category | string | Product category |
| price | number | Product price in USD |
| calories | integer | Caloric content |
| allergens | array | List of allergens |
JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Product identifier",
"example": "PROD-001"
},
"name": {
"type": "string",
"description": "Product name",
"example": "Grilled Chicken"
},
"category": {
"type": "string",
"description": "Product category",
"enum": [
"ENTREE",
"SIDE",
"BEVERAGE",
"DESSERT",
"SNACK"
],
"example": "ENTREE"
},
"price": {
"type": "number",
"description": "Product price in USD",
"example": 8.95
},
"calories": {
"type": "integer",
"description": "Caloric content",
"example": 380
},
"allergens": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of allergens",
"example": [
"GLUTEN",
"DAIRY"
]
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aramark/refs/heads/main/json-schema/marko-api-product-schema.json",
"title": "Product",
"description": "Product schema from Aramark Marko API"
}