OpenShift · Schema

ProjectStatus

Current state of the project.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

Name Type Description
phase string The lifecycle phase of the project.
conditions array
View JSON Schema on GitHub

JSON Schema

openshift-projectstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectStatus",
  "title": "ProjectStatus",
  "type": "object",
  "description": "Current state of the project.",
  "properties": {
    "phase": {
      "type": "string",
      "description": "The lifecycle phase of the project.",
      "enum": [
        "Active",
        "Terminating"
      ],
      "example": "Active"
    },
    "conditions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "reason": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "lastTransitionTime": {
            "type": "string",
            "format": "date-time"
          }
        }
      },
      "example": []
    }
  }
}