WSO2 · JSON Structure

Admin Api Custom Url Info Structure

The custom url information of the tenant domain

Type: object Properties: 4
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

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

Properties

tenantDomain tenantAdminUsername enabled devPortal

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-custom-url-info-structure.json",
  "name": "Custom url information",
  "description": "The custom url information of the tenant domain",
  "type": "object",
  "properties": {
    "tenantDomain": {
      "type": "string",
      "example": "carbon.super"
    },
    "tenantAdminUsername": {
      "type": "string",
      "example": "john@foo.com"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "devPortal": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "example": "http://example.com"
        }
      }
    }
  }
}