Separated open-cmis-tck and guide-board repositories
This commit is contained in:
parent
6cdc5db1bd
commit
bd8427026f
51 changed files with 5221 additions and 2 deletions
28
docs/schemas/framework.schema.json
Normal file
28
docs/schemas/framework.schema.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "Guide Board Framework",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"id",
|
||||
"authority_id",
|
||||
"name",
|
||||
"version",
|
||||
"status",
|
||||
"source_urls",
|
||||
"requirement_index",
|
||||
"profile_index",
|
||||
"license_posture"
|
||||
],
|
||||
"properties": {
|
||||
"id": { "type": "string" },
|
||||
"authority_id": { "type": "string" },
|
||||
"name": { "type": "string" },
|
||||
"version": { "type": "string" },
|
||||
"status": { "type": "string" },
|
||||
"source_urls": { "type": "array", "items": { "type": "string" } },
|
||||
"requirement_index": { "type": "array", "items": { "type": "string" } },
|
||||
"profile_index": { "type": "array", "items": { "type": "string" } },
|
||||
"license_posture": { "type": "string" }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue