You've already forked generic-industrial-process
Import UAPF package
Some checks failed
Validate OIPF Library / validate-yaml (push) Has been cancelled
25 lines
761 B
JSON
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"}
|
|
}
|
|
}
|
|
}
|
|
}
|