jx/internal/resource/schemas/exec.jsonschema
Matthew Rich 33dd463180
Some checks failed
Lint / golangci-lint (push) Failing after 9m53s
Declarative Tests / test (push) Failing after 58s
update resource schemas
2024-04-09 12:30:05 -07:00

22 lines
366 B
Plaintext

{
"$id": "exec.jsonschema",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "exec",
"type": "object",
"required": [ "create", "read" ],
"properties": {
"create": {
"type": "string"
},
"read": {
"type": "string"
},
"update": {
"type": "string"
},
"delete": {
"type": "string"
}
}
}