{ "$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" } } }