Words API · Schema

DefinitionEntry

One definition with its grammatical category.

DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

Properties

Name Type Description
definition string Definition text.
partOfSpeech string Grammatical category.
View JSON Schema on GitHub

JSON Schema

words-definition-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/words/refs/heads/main/json-schema/words-definition-entry-schema.json",
  "title": "DefinitionEntry",
  "description": "One definition with its grammatical category.",
  "type": "object",
  "properties": {
    "definition": {
      "type": "string",
      "description": "Definition text.",
      "example": "fruit with red or yellow or green skin and sweet to tart crisp whitish flesh"
    },
    "partOfSpeech": {
      "type": "string",
      "description": "Grammatical category.",
      "example": "noun"
    }
  }
}