Unity · Schema

UsernamePasswordSignUpRequest

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

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

JSON Schema

unity-usernamepasswordsignuprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UsernamePasswordSignUpRequest",
  "title": "UsernamePasswordSignUpRequest",
  "type": "object",
  "required": [
    "username",
    "password"
  ],
  "properties": {
    "username": {
      "type": "string",
      "minLength": 3,
      "maxLength": 20
    },
    "password": {
      "type": "string",
      "minLength": 8
    }
  }
}