{ "description": "Definitions used throughout the Open Container Runtime Specification", "definitions": { "int8": { "type": "integer", "minimum": -128, "maximum": 127 }, "int16": { "type": "integer", "minimum": -32768, "maximum": 32767 }, "int32": { "type": "integer", "minimum": -2147483648, "maximum": 2147483647 }, "int64": { "type": "integer", "minimum": -9223372036854776000, "maximum": 9223372036854776000 }, "uint8": { "type": "integer", "minimum": 0, "maximum": 255 }, "uint16": { "type": "integer", "minimum": 0, "maximum": 65535 }, "uint32": { "type": "integer", "minimum": 0, "maximum": 4294967295 }, "uint64": { "type": "integer", "minimum": 0, "maximum": 18446744073709552000 }, "percent": { "type": "integer", "minimum": 0, "maximum": 100 }, "mapStringString": { "type": "object", "patternProperties": { ".{1,}": { "type": "string" } } }, "UID": { "$ref": "#/definitions/uint32" }, "GID": { "$ref": "#/definitions/uint32" }, "ArrayOfGIDs": { "type": "array", "items": { "$ref": "#/definitions/GID" } }, "ArrayOfStrings": { "type": "array", "items": { "type": "string" } }, "FilePath": { "type": "string" }, "Env": { "$ref": "#/definitions/ArrayOfStrings" }, "Hook": { "type": "object", "properties": { "path": { "$ref": "#/definitions/FilePath" }, "args": { "$ref": "#/definitions/ArrayOfStrings" }, "env": { "$ref": "#/definitions/Env" }, "timeout": { "type": "integer" } }, "required": [ "path" ] }, "ArrayOfHooks": { "type": "array", "items": { "$ref": "#/definitions/Hook" } }, "IDMapping": { "type": "object", "properties": { "hostID": { "$ref": "#/definitions/uint32" }, "containerID": { "$ref": "#/definitions/uint32" }, "size": { "$ref": "#/definitions/uint32" } }, "required": [ "hostID", "containerID", "size" ] }, "Mount": { "type": "object", "properties": { "source": { "$ref": "#/definitions/FilePath" }, "destination": { "$ref": "#/definitions/FilePath" }, "options": { "$ref": "#/definitions/ArrayOfStrings" }, "type": { "type": "string" } }, "required": [ "destination" ] }, "ociVersion": { "description": "The version of Open Container Runtime Specification that the document complies with", "type": "string" }, "annotations": { "$ref": "#/definitions/mapStringString" } } }