PartOfSpeech schema from Wordnik
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wordnik/refs/heads/main/json-schema/wordnik-part-of-speech-schema.json", "title": "PartOfSpeech", "description": "PartOfSpeech schema from Wordnik", "type": "object", "properties": { "allCategories": { "type": "array", "items": { "$ref": "#/components/schemas/Category" } }, "roots": { "type": "array", "items": { "$ref": "#/components/schemas/Root" } }, "storageAbbr": { "type": "array", "items": { "type": "string" } } } }