WSO2 · Schema

Tenant information

The tenant information of the user

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
username string
tenantDomain string
tenantId integer
View JSON Schema on GitHub

JSON Schema

admin-api-tenant-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/admin-api-tenant-info-schema.json",
  "title": "Tenant information",
  "description": "The tenant information of the user",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "example": "john"
    },
    "tenantDomain": {
      "type": "string",
      "example": "carbon.super"
    },
    "tenantId": {
      "type": "integer",
      "example": -1234
    }
  }
}