OpenShift · Schema

OwnerReference

Contains information to identify an owning object.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
apiVersion string
kind string
name string
uid string
controller boolean
blockOwnerDeletion boolean
View JSON Schema on GitHub

JSON Schema

openshift-rest-owner-reference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OwnerReference",
  "type": "object",
  "description": "Contains information to identify an owning object.",
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "uid": {
      "type": "string"
    },
    "controller": {
      "type": "boolean"
    },
    "blockOwnerDeletion": {
      "type": "boolean"
    }
  }
}