Red Hat OpenShift · Schema

ObjectMeta

ContainersEnterpriseHybrid CloudKubernetesPlatform-as-a-ServiceRed Hat

Properties

Name Type Description
name string
namespace string
uid string
resourceVersion string
creationTimestamp string
labels object
annotations object
View JSON Schema on GitHub

JSON Schema

red-hat-openshift-objectmeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObjectMeta",
  "title": "ObjectMeta",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "namespace": {
      "type": "string"
    },
    "uid": {
      "type": "string"
    },
    "resourceVersion": {
      "type": "string"
    },
    "creationTimestamp": {
      "type": "string",
      "format": "date-time"
    },
    "labels": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "annotations": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}