15 lines
339 B
JSON
15 lines
339 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-zA-Z]([-_a-zA-Z0-9]+)$"
|
|
}
|
|
}
|
|
}
|