Words API · JSON Structure

Words Frequency Response Structure

Response from GET /words/{word}/frequency.

Type: object Properties: 0
DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

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

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-frequency-response-structure.json",
  "name": "FrequencyResponse",
  "description": "Response from GET /words/{word}/frequency.",
  "type": "object",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "word": {
          "type": "string",
          "example": "apple"
        },
        "frequency": {
          "$ref": "#/components/schemas/Frequency"
        }
      }
    }
  ]
}