Wordnik · Schema

AuthenticationToken

AuthenticationToken schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
token string
userId integer
userSignature string
View JSON Schema on GitHub

JSON Schema

wordnik-authentication-token-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-authentication-token-schema.json",
  "title": "AuthenticationToken",
  "description": "AuthenticationToken schema from Wordnik",
  "type": "object",
  "properties": {
    "token": {
      "type": "string"
    },
    "userId": {
      "type": "integer",
      "format": "int64"
    },
    "userSignature": {
      "type": "string"
    }
  }
}