jx/internal/resource/schemas/container-network.schema.json
Matthew Rich 0888ae2045
Some checks failed
Lint / golangci-lint (push) Failing after 9m55s
Declarative Tests / test (push) Failing after 5s
add container-image resource
2024-05-23 22:11:51 -07:00

15 lines
338 B
JSON

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