mirror of
https://github.com/opencontainers/runtime-spec.git
synced 2026-02-05 09:45:57 +01:00
33 lines
943 B
JSON
33 lines
943 B
JSON
{
|
|
"description": "Open Container Initiative Runtime Specification Runtime Features Schema",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"ociVersionMin": {
|
|
"$ref": "defs.json#/definitions/ociVersion"
|
|
},
|
|
"ociVersionMax": {
|
|
"$ref": "defs.json#/definitions/ociVersion"
|
|
},
|
|
"hooks": {
|
|
"$ref": "defs.json#/definitions/ArrayOfStrings"
|
|
},
|
|
"mountOptions": {
|
|
"$ref": "defs.json#/definitions/ArrayOfStrings"
|
|
},
|
|
"annotations": {
|
|
"$ref": "defs.json#/definitions/annotations"
|
|
},
|
|
"potentiallyUnsafeConfigAnnotations": {
|
|
"$ref": "defs.json#/definitions/ArrayOfStrings"
|
|
},
|
|
"linux": {
|
|
"$ref": "features-linux.json#/linux"
|
|
}
|
|
},
|
|
"required": [
|
|
"ociVersionMin",
|
|
"ociVersionMax"
|
|
]
|
|
}
|