Choreo · Schema

Choreo Organization

An organization on the WSO2 Choreo platform, serving as the top-level grouping for projects, components, APIs, and environments.

AI AppsAPI ManagementCI/CDCloud NativeDevOpsDeveloper PortalFinOpsIDEInternal Developer PlatformKubernetesLifecycleObservabilityOrchestrationPlatform EngineeringPro-Code API CompositionUnifiedWSO2Workflows

Properties

Name Type Description
id string Unique identifier for the organization.
name string Name of the organization.
handle string URL-friendly handle for the organization.
createdAt string Timestamp when the organization was created.
View JSON Schema on GitHub

JSON Schema

choreo-organization.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/choreo/refs/heads/main/json-schema/choreo-organization.json",
  "title": "Choreo Organization",
  "description": "An organization on the WSO2 Choreo platform, serving as the top-level grouping for projects, components, APIs, and environments.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the organization."
    },
    "name": {
      "type": "string",
      "description": "Name of the organization."
    },
    "handle": {
      "type": "string",
      "description": "URL-friendly handle for the organization."
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the organization was created."
    }
  },
  "required": ["id", "name"]
}