An object in ODP (product, order, etc.)
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OdpObject", "title": "OdpObject", "type": "object", "description": "An object in ODP (product, order, etc.)", "properties": { "object_id": { "type": "string", "description": "Unique identifier for the object" }, "type": { "type": "string", "description": "Object type" }, "fields": { "type": "object", "description": "Object field values", "additionalProperties": true }, "created": { "type": "string", "format": "date-time", "description": "Timestamp when the object was created" }, "updated": { "type": "string", "format": "date-time", "description": "Timestamp when the object was last updated" } } }