A list of Project objects.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectList", "title": "ProjectList", "type": "object", "description": "A list of Project objects.", "required": [ "items" ], "properties": { "apiVersion": { "type": "string", "default": "project.openshift.io/v1", "example": "example_value" }, "kind": { "type": "string", "default": "ProjectList", "example": "example_value" }, "metadata": { "$ref": "#/components/schemas/ListMeta" }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/Project" }, "example": [] } } }