OpenShift · Schema

Project

A Project provides a scope for Kubernetes resources, extending namespaces with additional metadata and access controls for multi-tenant environments.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
apiVersion string
kind string
metadata object
spec object
status object
View JSON Schema on GitHub

JSON Schema

openshift-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "description": "A Project provides a scope for Kubernetes resources, extending namespaces with additional metadata and access controls for multi-tenant environments.",
  "properties": {
    "apiVersion": {
      "type": "string",
      "default": "project.openshift.io/v1",
      "example": "example_value"
    },
    "kind": {
      "type": "string",
      "default": "Project",
      "example": "example_value"
    },
    "metadata": {
      "$ref": "#/components/schemas/ObjectMeta"
    },
    "spec": {
      "$ref": "#/components/schemas/ProjectSpec"
    },
    "status": {
      "$ref": "#/components/schemas/ProjectStatus"
    }
  }
}