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-objectreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObjectReference",
  "title": "ObjectReference",
  "type": "object",
  "description": "A reference to a Kubernetes object.",
  "properties": {
    "apiVersion": {
      "type": "string",
      "example": "example_value"
    },
    "kind": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "namespace": {
      "type": "string",
      "example": "example_value"
    }
  }
}