WSO2 · Schema

Custom url information

The custom url information of the tenant domain

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
tenantDomain string
tenantAdminUsername string
enabled boolean
devPortal object
View JSON Schema on GitHub

JSON Schema

admin-api-custom-url-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-custom-url-info-schema.json",
  "title": "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": "[email protected]"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "devPortal": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "example": "http://example.com"
        }
      }
    }
  }
}