OpenShift · Schema

ProjectSpec

Specification for the desired project state.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
finalizers array Finalizers that must complete before the project is deleted.
View JSON Schema on GitHub

JSON Schema

openshift-projectspec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectSpec",
  "title": "ProjectSpec",
  "type": "object",
  "description": "Specification for the desired project state.",
  "properties": {
    "finalizers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Finalizers that must complete before the project is deleted.",
      "example": []
    }
  }
}