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" ]
|
|
|
|
},
|
2024-07-01 21:54:18 +00:00
|
|
|
"config": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "Config name"
|
|
|
|
},
|
2024-04-25 07:45:05 +00:00
|
|
|
"attributes": {
|
|
|
|
"$ref": "iptable.jsonschema"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|