jx/internal/resource/schemas/exec.jsonschema
Matthew Rich c4b7819713
Some checks failed
Lint / golangci-lint (push) Failing after 10m4s
Declarative Tests / test (push) Successful in 1m14s
add command helper
2024-04-05 10:22:17 -07:00

21 lines
338 B
Plaintext

{
"$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"
}
}
}