LanguageTool · Schema

WordsResponse

Response from GET /words - user's personal dictionary words

GrammarSpell CheckStyleProofreadingNLPNatural Language ProcessingWritingOpen Source

Properties

Name Type Description
words array Array of words from the user's personal dictionaries.
View JSON Schema on GitHub

JSON Schema

words-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/languagetools/main/json-schema/words-response.json",
  "title": "WordsResponse",
  "description": "Response from GET /words - user's personal dictionary words",
  "type": "object",
  "properties": {
    "words": {
      "type": "array",
      "description": "Array of words from the user's personal dictionaries.",
      "items": {
        "type": "string"
      }
    }
  }
}