OpenShift · Schema

ObjectReference

A reference to a Kubernetes object.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
apiVersion string
kind string
name string
namespace string
View JSON Schema on GitHub

JSON Schema

openshift-rest-object-reference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ObjectReference",
  "type": "object",
  "description": "A reference to a Kubernetes object.",
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "namespace": {
      "type": "string"
    }
  }
}