Wordnik · JSON Structure

Wordnik Root Structure

Root schema from Wordnik

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

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

Properties

categories id name

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-root-structure.json",
  "name": "Root",
  "description": "Root schema from Wordnik",
  "type": "object",
  "properties": {
    "categories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Category"
      }
    },
    "id": {
      "type": "int64"
    },
    "name": {
      "type": "string"
    }
  },
  "required": [
    "id"
  ]
}