{ "$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 } } }