jx/internal/resource/schemas/iptable-declaration.jsonschema

22 lines
479 B
Plaintext
Raw Normal View History

2024-04-25 07:45:05 +00:00
{
"$id": "iptable-declaration.jsonschema",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "iptable-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "iptable" ]
},
"config": {
"type": "string",
"description": "Config name"
},
2024-04-25 07:45:05 +00:00
"attributes": {
"$ref": "iptable.jsonschema"
}
}
}