8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"description": "Open Container Runtime State Schema",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "https://opencontainers.org/schema/state",
|
|
"type": "object",
|
|
"properties": {
|
|
"ociVersion": {
|
|
"id": "https://opencontainers.org/schema/runtime/state/ociVersion",
|
|
"$ref": "defs.json#/definitions/ociVersion"
|
|
},
|
|
"id": {
|
|
"id": "https://opencontainers.org/schema/runtime/state/id",
|
|
"description": "the container's ID",
|
|
"type": "string"
|
|
},
|
|
"status": {
|
|
"id": "https://opencontainers.org/schema/runtime/state/status",
|
|
"type": "string",
|
|
"enum": [
|
|
"created",
|
|
"running",
|
|
"stopped"
|
|
]
|
|
},
|
|
"pid": {
|
|
"id": "https://opencontainers.org/schema/runtime/state/pid",
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"bundlePath": {
|
|
"id": "https://opencontainers.org/schema/runtime/state/bundlePath",
|
|
"type": "string"
|
|
},
|
|
"annotations": {
|
|
"$ref": "defs.json#/definitions/annotations"
|
|
}
|
|
},
|
|
"required": [
|
|
"ociVersion",
|
|
"id",
|
|
"status",
|
|
"pid",
|
|
"bundlePath"
|
|
]
|
|
}
|