generated from coulomb/repo-seed
Separated open-cmis-tck and guide-board repositories
This commit is contained in:
30
docs/schemas/check-definition.schema.json
Normal file
30
docs/schemas/check-definition.schema.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "Guide Board Check Definition",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"id",
|
||||
"extension_id",
|
||||
"check_type",
|
||||
"framework_refs",
|
||||
"requirement_refs",
|
||||
"inputs",
|
||||
"preconditions",
|
||||
"timeout",
|
||||
"runner_ref",
|
||||
"expected_artifacts"
|
||||
],
|
||||
"properties": {
|
||||
"id": { "type": "string" },
|
||||
"extension_id": { "type": "string" },
|
||||
"check_type": { "type": "string" },
|
||||
"framework_refs": { "type": "array", "items": { "type": "string" } },
|
||||
"requirement_refs": { "type": "array", "items": { "type": "string" } },
|
||||
"inputs": { "type": "object" },
|
||||
"preconditions": { "type": "array", "items": { "type": "string" } },
|
||||
"timeout": { "type": "integer" },
|
||||
"runner_ref": { "type": ["string", "null"] },
|
||||
"expected_artifacts": { "type": "array", "items": { "type": "string" } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user