Wordnik · Schema
User
User schema from Wordnik
DictionariesDictionaryWord DataEnglishLexicographyPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | |
| string | ||
| faceBookId | string | |
| id | integer | |
| password | string | |
| status | integer | |
| userName | string | |
| username | string |
JSON Schema
{
"$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"
}
}
}