Wordnik · Schema

User

User schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
displayName string
email string
faceBookId string
id integer
password string
status integer
userName string
username string
View JSON Schema on GitHub

JSON Schema

wordnik-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wordnik/refs/heads/main/json-schema/wordnik-user-schema.json",
  "title": "User",
  "description": "User schema from Wordnik",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "faceBookId": {
      "type": "string"
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "password": {
      "type": "string",
      "format": "password"
    },
    "status": {
      "type": "integer",
      "format": "int32"
    },
    "userName": {
      "type": "string"
    },
    "username": {
      "type": "string"
    }
  }
}