2024-05-06 00:48:54 +00:00
|
|
|
{
|
2024-07-17 08:34:57 +00:00
|
|
|
"$id": "container.schema.json",
|
2024-05-06 00:48:54 +00:00
|
|
|
"$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})$"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|