Red Hat 3scale · Schema

CreateAccountRequest

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Properties

Name Type Description
org_name string
username string
email string
password string
View JSON Schema on GitHub

JSON Schema

red-hat-3scale-createaccountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAccountRequest",
  "title": "CreateAccountRequest",
  "type": "object",
  "required": [
    "org_name",
    "username",
    "email",
    "password"
  ],
  "properties": {
    "org_name": {
      "type": "string"
    },
    "username": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "password": {
      "type": "string"
    }
  }
}