jx/internal/resource/schemas/exec-declaration.schema.json

18 lines
387 B
JSON
Raw Normal View History

2024-04-09 19:30:05 +00:00
{
2024-07-17 08:34:57 +00:00
"$id": "exec-declaration.schema.json",
2024-04-09 19:30:05 +00:00
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "exec-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "exec" ]
},
"attributes": {
2024-07-17 08:34:57 +00:00
"$ref": "exec.schema.json"
2024-04-09 19:30:05 +00:00
}
}
}