Rancher · Schema

Rancher Project

Schema describing a Rancher project, which groups namespaces within a cluster for tenancy and policy.

Cluster ManagementContainersKubernetesMulti-ClusterOpen SourceSUSEPlatform Engineering

Properties

Name Type Description
id string
name string
clusterId string
description string
resourceQuota object
namespaceDefaultResourceQuota object
View JSON Schema on GitHub

JSON Schema

rancher-project.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/rancher/refs/heads/main/json-schema/rancher-project.json",
  "title": "Rancher Project",
  "description": "Schema describing a Rancher project, which groups namespaces within a cluster for tenancy and policy.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "clusterId": { "type": "string" },
    "description": { "type": "string" },
    "resourceQuota": { "type": "object" },
    "namespaceDefaultResourceQuota": { "type": "object" }
  },
  "required": ["name", "clusterId"]
}