You've already forked generic-industrial-process
Import UAPF package
This commit is contained in:
24
resources/schemas/oipf-package.schema.json
Normal file
24
resources/schemas/oipf-package.schema.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"$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"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user