21 lines
458 B
JSON
21 lines
458 B
JSON
{
|
|
"$id": "group-declaration.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "declaration",
|
|
"type": "object",
|
|
"required": [ "type", "attributes" ],
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"description": "Resource type name.",
|
|
"enum": [ "group" ]
|
|
},
|
|
"transition": {
|
|
"$ref": "storagetransition.schema.json"
|
|
},
|
|
"attributes": {
|
|
"$ref": "group.schema.json"
|
|
}
|
|
}
|
|
}
|