jx/internal/resource/schemas/container.jsonschema
Matthew Rich 43a2274b7e
Some checks failed
Lint / golangci-lint (push) Failing after 9m50s
Declarative Tests / test (push) Failing after 10s
update container/iptables resources
2024-05-05 17:48:54 -07:00

15 lines
313 B
Plaintext

{
"$id": "container.jsonschema",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "container",
"description": "A docker container",
"type": "object",
"required": [ "name" ],
"properties": {
"name": {
"type": "string",
"pattern": "^[a-z]([-_a-z0-9]{0,31})$"
}
}
}