{ "description": "Definitions used throughout the OpenContainer 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 }, "uint16Pointer": { "oneOf": [ { "$ref": "#/definitions/uint16" }, { "type": "null" } ] }, "uint64Pointer": { "oneOf": [ { "$ref": "#/definitions/uint64" }, { "type": "null" } ] }, "stringPointer": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "mapStringString": { "type": "object", "patternProperties": { ".{1,}": { "type": "string" } } }, "mapStringObject": { "type": "object", "patternProperties": { ".{1,}": { "type": "object" } } }, "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": { "properties": { "path": { "$ref": "#/definitions/FilePath" }, "args": { "$ref": "#/definitions/ArrayOfStrings" }, "env": { "$ref": "#/definitions/Env" } } }, "ArrayOfHooks": { "type": "array", "items": { "$ref": "#/definitions/Hook" } }, "IDMapping": { "properties": { "hostID": { "$ref": "#/definitions/uint32" }, "containerID": { "$ref": "#/definitions/uint32" }, "size": { "$ref": "#/definitions/uint32" } } }, "Mount": { "properties": { "source": { "$ref": "#/definitions/FilePath" }, "destination": { "$ref": "#/definitions/FilePath" }, "options": { "$ref": "#/definitions/ArrayOfStrings" }, "type": { "type": "string" } }, "required": [ "destination", "source", "type" ] } } }