jx/internal/resource/schemas/document.jsonschema

17 lines
294 B
Plaintext
Raw Normal View History

2024-04-02 20:33:49 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "document",
"type": "object",
"required": [ "resources" ],
"properties": {
"resources": {
"type": "array",
"description": "Resources list",
"items": {
"type": "object"
}
}
}
}