Wordnik · Schema

Sentence

Sentence schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
display string
documentMetadataId integer
hasScoredWords boolean
id integer
rating integer
scoredWords array
View JSON Schema on GitHub

JSON Schema

wordnik-sentence-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-sentence-schema.json",
  "title": "Sentence",
  "description": "Sentence schema from Wordnik",
  "type": "object",
  "properties": {
    "display": {
      "type": "string"
    },
    "documentMetadataId": {
      "type": "integer",
      "format": "int64"
    },
    "hasScoredWords": {
      "type": "boolean"
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "rating": {
      "type": "integer",
      "format": "int32"
    },
    "scoredWords": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ScoredWord"
      }
    }
  }
}