{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://oipf.uapf.dev/schemas/oipf-package.schema.json", "title": "OIPF Package", "type": "object", "required": ["package"], "properties": { "package": { "type": "object", "required": ["id", "name", "version", "kind", "status", "process_pattern"], "properties": { "id": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "kind": {"type": "string"}, "status": {"type": "string"}, "process_pattern": {"type": "array", "items": {"type": "string"}}, "model_contract": {"type": "string"}, "bpmn": {"type": "string"}, "dmn": {"type": "string"} } } } }