1
0
Files
generic-industrial-process/resources/schemas/oipf-package.schema.json
rg4444 0ca748c9a5
Some checks failed
Validate OIPF Library / validate-yaml (push) Has been cancelled
init
2026-06-16 08:07:49 +03:00

25 lines
761 B
JSON

{
"$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"}
}
}
}
}