WSO2 · JSON Structure

Devportal Api User Structure

User schema from WSO2 API Manager

Type: object Properties: 5 Required: 5
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

User is a JSON Structure definition published by WSO2, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

username password firstName lastName email

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/devportal-api-user-structure.json",
  "name": "User",
  "description": "User schema from WSO2 API Manager",
  "required": [
    "email",
    "firstName",
    "lastName",
    "password",
    "username"
  ],
  "type": "object",
  "properties": {
    "username": {
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string"
    }
  }
}