Wordnik · Schema

PartOfSpeech

PartOfSpeech schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
allCategories array
roots array
storageAbbr array
View JSON Schema on GitHub

JSON Schema

wordnik-part-of-speech-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}