Wordnik · JSON Structure

Wordnik Word Object Structure

WordObject schema from Wordnik

Type: object Properties: 6 Required: 1
DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

WordObject is a JSON Structure definition published by Wordnik, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

canonicalForm id originalWord suggestions vulgar word

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wordnik/refs/heads/main/json-structure/wordnik-word-object-structure.json",
  "name": "WordObject",
  "description": "WordObject schema from Wordnik",
  "type": "object",
  "properties": {
    "canonicalForm": {
      "type": "string"
    },
    "id": {
      "type": "int64"
    },
    "originalWord": {
      "type": "string"
    },
    "suggestions": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "vulgar": {
      "type": "string"
    },
    "word": {
      "type": "string"
    }
  },
  "required": [
    "id"
  ]
}