Archer Daniels Midland · Schema
Product
AgricultureFood ProcessingCommoditiesSupply ChainFortune 100Nutrition
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Product identifier |
| name | string | Product name |
| category | string | Product category |
| applications | array | Food and beverage application areas |
| protein | number | Protein content percentage |
| description | string | Product description |
JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Product identifier",
"example": "SOY-PROTEIN-CONC-001"
},
"name": {
"type": "string",
"description": "Product name",
"example": "Soy Protein Concentrate"
},
"category": {
"type": "string",
"description": "Product category",
"enum": [
"starches",
"proteins",
"oils",
"sweeteners",
"fibers",
"flavors"
],
"example": "proteins"
},
"applications": {
"type": "array",
"items": {
"type": "string"
},
"description": "Food and beverage application areas",
"example": [
"meat-analogs",
"dairy-alternatives"
]
},
"protein": {
"type": "number",
"description": "Protein content percentage",
"example": 70.0
},
"description": {
"type": "string",
"description": "Product description",
"example": "High-quality soy protein concentrate for food applications"
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/archer-daniels-midland/refs/heads/main/json-schema/archer-daniels-midland-commodity-data-api-product-schema.json",
"title": "Product"
}