Wordnik · JSON Structure

Wordnik Word Of The Day Structure

WordOfTheDay schema from Wordnik

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

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

Properties

category contentProvider createdAt createdBy definitions examples htmlExtra id note parentId publishDate 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-of-the-day-structure.json",
  "name": "WordOfTheDay",
  "description": "WordOfTheDay schema from Wordnik",
  "type": "object",
  "properties": {
    "category": {
      "type": "string"
    },
    "contentProvider": {
      "$ref": "#/components/schemas/ContentProvider"
    },
    "createdAt": {
      "type": "datetime"
    },
    "createdBy": {
      "type": "string"
    },
    "definitions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SimpleDefinition"
      }
    },
    "examples": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SimpleExample"
      }
    },
    "htmlExtra": {
      "type": "string"
    },
    "id": {
      "type": "int64"
    },
    "note": {
      "type": "string"
    },
    "parentId": {
      "type": "string"
    },
    "publishDate": {
      "type": "date"
    },
    "word": {
      "type": "string"
    }
  },
  "required": [
    "id"
  ]
}