{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecurityContextConstraints", "title": "SecurityContextConstraints", "type": "object", "properties": { "apiVersion": { "type": "string", "default": "security.openshift.io/v1" }, "kind": { "type": "string", "default": "SecurityContextConstraints" }, "metadata": { "$ref": "#/components/schemas/ObjectMeta" }, "allowPrivilegedContainer": { "type": "boolean" }, "allowedCapabilities": { "type": "array", "items": { "type": "string" } }, "runAsUser": { "type": "object" }, "seLinuxContext": { "type": "object" } } }