WSO2 · JSON Structure

Admin Api Tenant Info Structure

The tenant information of the user

Type: object Properties: 3
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Tenant information is a JSON Structure definition published by WSO2, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

username tenantDomain tenantId

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/admin-api-tenant-info-structure.json",
  "name": "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": "int32",
      "example": -1234
    }
  }
}