{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-preset-schema.json", "title": "Preset Object Schema", "type": "object", "additionalProperties": false, "properties": { "link": { "type": "string" }, "id": { "type": "integer" }, "company_id": { "type": "integer" }, "name": { "type": "string" }, "body": { "type": "object", "properties": { "version": { "type": "string" }, "overrides": { "type": "array", "items": { "type": "string" } }, "properties": { "type": "array", "items": { "type": "string" } }, "label_config": { "type": "object" } } }, "archive_date": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "created_date": { "type": "string" }, "updated_date": { "type": "string" } }, "required": [] }