jx/internal/resource/schemas/iptable-declaration.jsonschema
Matthew Rich f25fa59449
Some checks failed
Lint / golangci-lint (push) Failing after 9m50s
Declarative Tests / test (push) Failing after 9s
update iptables
2024-04-25 00:45:05 -07:00

18 lines
397 B
Plaintext

{
"$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" ]
},
"attributes": {
"$ref": "iptable.jsonschema"
}
}
}