jx/internal/resource/schemas/document.jsonschema
Matthew Rich 28af02440a
Some checks failed
Declarative Tests / test (push) Waiting to run
Lint / golangci-lint (push) Has been cancelled
add schemas
2024-04-02 13:33:49 -07:00

17 lines
294 B
Plaintext

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "document",
"type": "object",
"required": [ "resources" ],
"properties": {
"resources": {
"type": "array",
"description": "Resources list",
"items": {
"type": "object"
}
}
}
}