Cycloid · Schema

Organization

A Cycloid organization tenant.

Asset InventoryCI/CDCloud Cost ManagementCloud ManagementDeveloper ExperienceDevOpsFinOpsGitOpsGreenOpsInfrastructure as CodeInternal Developer PlatformInternal Developer PortalMulti-CloudPlatform EngineeringRBACSelf-ServiceService CatalogStackFormsTerraform

Properties

Name Type Description
canonical string URL-safe slug used in API paths.
name string
created_at string
updated_at string
owner object
View JSON Schema on GitHub

JSON Schema

cycloid-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cycloid/refs/heads/main/json-schema/cycloid-organization-schema.json",
  "title": "Organization",
  "description": "A Cycloid organization tenant.",
  "type": "object",
  "required": ["canonical", "name"],
  "properties": {
    "canonical": {
      "type": "string",
      "description": "URL-safe slug used in API paths."
    },
    "name": { "type": "string" },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" },
    "owner": {
      "type": "object",
      "properties": {
        "username": { "type": "string" },
        "email": { "type": "string", "format": "email" }
      }
    }
  }
}