jx/internal/resource/schemas/user-declaration.jsonschema

21 lines
453 B
Plaintext
Raw Normal View History

2024-04-09 19:30:05 +00:00
{
"$id": "user-declaration.jsonschema",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "user" ]
},
2024-05-06 00:48:54 +00:00
"transition": {
"$ref": "storagetransition.schema.json"
},
2024-04-09 19:30:05 +00:00
"attributes": {
"$ref": "user.jsonschema"
}
}
}