WSO2 · Schema

ApplicationUpdateRequest

Request body to update application attributes

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
owner string The new owner of the application
tokenType string The type of token for the application (e.g., JWT)
View JSON Schema on GitHub

JSON Schema

admin-api-application-update-request-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-application-update-request-schema.json",
  "title": "ApplicationUpdateRequest",
  "description": "Request body to update application attributes",
  "type": "object",
  "properties": {
    "owner": {
      "type": "string",
      "description": "The new owner of the application"
    },
    "tokenType": {
      "type": "string",
      "description": "The type of token for the application (e.g., JWT)",
      "enum": [
        "JWT"
      ]
    }
  }
}