generated from coulomb/repo-seed
Separated open-cmis-tck and guide-board repositories
This commit is contained in:
35
docs/schemas/assessment-profile.schema.json
Normal file
35
docs/schemas/assessment-profile.schema.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "Guide Board Assessment Profile",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"id",
|
||||
"framework_refs",
|
||||
"extension_refs",
|
||||
"target_profile_ref",
|
||||
"selected_check_groups",
|
||||
"expectations_ref",
|
||||
"waivers_ref",
|
||||
"output_policy",
|
||||
"retention_policy"
|
||||
],
|
||||
"properties": {
|
||||
"id": { "type": "string" },
|
||||
"framework_refs": { "type": "array", "items": { "type": "string" } },
|
||||
"extension_refs": { "type": "array", "items": { "type": "string" } },
|
||||
"target_profile_ref": { "type": "string" },
|
||||
"selected_check_groups": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"type": "array",
|
||||
"items": { "type": "string" }
|
||||
}
|
||||
},
|
||||
"expectations_ref": { "type": ["string", "null"] },
|
||||
"waivers_ref": { "type": ["string", "null"] },
|
||||
"output_policy": { "type": "object" },
|
||||
"retention_policy": { "type": "object" },
|
||||
"runtime_policy": { "type": "object" }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user