{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/agricultural-marketing-service/refs/heads/main/json-schema/mars-api-office-schema.json", "title": "Office", "description": "A USDA AMS market news office.", "type": "object", "properties": { "office_id": { "type": "string", "description": "Unique identifier for the office.", "example": "NAT" }, "name": { "type": "string", "description": "Name of the market news office.", "example": "National" }, "city": { "type": "string", "description": "City where the office is located.", "example": "Washington" }, "state": { "type": "string", "description": "State where the office is located.", "example": "DC" }, "commodities": { "type": "array", "items": { "type": "string" }, "description": "List of commodities covered by this office.", "example": [ "Cattle", "Hogs", "Dairy" ] } } }