Wordnik · Schema
WordOfTheDay
WordOfTheDay schema from Wordnik
DictionariesDictionaryWord DataEnglishLexicographyPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| category | string | |
| contentProvider | object | |
| createdAt | string | |
| createdBy | string | |
| definitions | array | |
| examples | array | |
| htmlExtra | string | |
| id | integer | |
| note | string | |
| parentId | string | |
| publishDate | string | |
| word | 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-word-of-the-day-schema.json",
"title": "WordOfTheDay",
"description": "WordOfTheDay schema from Wordnik",
"type": "object",
"properties": {
"category": {
"type": "string"
},
"contentProvider": {
"$ref": "#/components/schemas/ContentProvider"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"createdBy": {
"type": "string"
},
"definitions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SimpleDefinition"
}
},
"examples": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SimpleExample"
}
},
"htmlExtra": {
"type": "string"
},
"id": {
"type": "integer",
"format": "int64"
},
"note": {
"type": "string"
},
"parentId": {
"type": "string"
},
"publishDate": {
"type": "string",
"format": "date"
},
"word": {
"type": "string"
}
},
"required": [
"id"
]
}