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-ownerreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OwnerReference",
  "title": "OwnerReference",
  "type": "object",
  "description": "Contains information to identify an owning object.",
  "required": [
    "apiVersion",
    "kind",
    "name",
    "uid"
  ],
  "properties": {
    "apiVersion": {
      "type": "string",
      "example": "example_value"
    },
    "kind": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "uid": {
      "type": "string",
      "example": "500123"
    },
    "controller": {
      "type": "boolean",
      "example": true
    },
    "blockOwnerDeletion": {
      "type": "boolean",
      "example": true
    }
  }
}