...

Text file src/github.com/opencontainers/runtime-spec/schema/features-schema.json

Documentation: github.com/opencontainers/runtime-spec/schema

     1{
     2    "description": "Open Container Initiative Runtime Specification Runtime Features Schema",
     3    "$schema": "http://json-schema.org/draft-04/schema#",
     4    "type": "object",
     5    "properties": {
     6        "ociVersionMin": {
     7            "$ref": "defs.json#/definitions/ociVersion"
     8        },
     9        "ociVersionMax": {
    10            "$ref": "defs.json#/definitions/ociVersion"
    11        },
    12        "hooks": {
    13            "$ref": "defs.json#/definitions/ArrayOfStrings"
    14        },
    15        "mountOptions": {
    16            "$ref": "defs.json#/definitions/ArrayOfStrings"
    17        },
    18        "annotations": {
    19            "$ref": "defs.json#/definitions/annotations"
    20        },
    21         "linux": {
    22            "$ref": "features-linux.json#/linux"
    23        }
    24    },
    25    "required": [
    26        "ociVersionMin",
    27        "ociVersionMax"
    28    ]
    29}

View as plain text