Words API · JSON Structure

Words Definition Entry Structure

One definition with its grammatical category.

Type: object Properties: 2
DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

DefinitionEntry is a JSON Structure definition published by Words API, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

definition partOfSpeech

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/words/refs/heads/main/json-structure/words-definition-entry-structure.json",
  "name": "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"
    }
  }
}