{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "apiVersion", 
    "kind", 
    "name", 
    "uid"
  ], 
  "type": "object", 
  "description": "OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.", 
  "properties": {
    "kind": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "Kind of the referent. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds"
    }, 
    "uid": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids"
    }, 
    "apiVersion": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "API version of the referent."
    }, 
    "controller": {
      "type": "boolean", 
      "description": "If true, this reference points to the managing controller."
    }, 
    "blockOwnerDeletion": {
      "type": "boolean", 
      "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned."
    }, 
    "name": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names"
    }
  }
}