WSO2 · JSON Structure

Publisher Api Organization Structure

Organization schema from WSO2 API Manager

Type: object Properties: 5 Required: 1
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Organization is a JSON Structure definition published by WSO2, describing 5 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

organizationId externalOrganizationId parentOrganizationId displayName description

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-structure/publisher-api-organization-structure.json",
  "name": "Organization",
  "description": "Organization schema from WSO2 API Manager",
  "required": [
    "organizationId"
  ],
  "type": "object",
  "properties": {
    "organizationId": {
      "type": "string",
      "example": "ece92bdc-e1e6-325c-b6f4-656208a041e9",
      "readOnly": true,
      "description": "UUID of the organization.\n"
    },
    "externalOrganizationId": {
      "type": "string",
      "example": "ece92bdc-e1e6-325c-b6f4-656208a041e9",
      "description": "External id of the organization.\n"
    },
    "parentOrganizationId": {
      "type": "string",
      "readOnly": true,
      "example": "ece92bdc-e1e6-325c-b6f4-656208a041e9",
      "description": "UUID of the parent organization if there is any.\n"
    },
    "displayName": {
      "maxLength": 255,
      "minLength": 1,
      "type": "string",
      "example": "My Organization"
    },
    "description": {
      "maxLength": 1023,
      "type": "string",
      "example": "My Organization Description"
    }
  }
}