Words API · JSON Structure

Words Syllables Structure

Syllable breakdown for a word.

Type: object Properties: 2
DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

Syllables 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

count list

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-syllables-structure.json",
  "name": "Syllables",
  "description": "Syllable breakdown for a word.",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "description": "Number of syllables in the word.",
      "example": 2
    },
    "list": {
      "type": "array",
      "description": "Ordered list of the word's syllables.",
      "items": {
        "type": "string"
      },
      "example": [
        "ap",
        "ple"
      ]
    }
  }
}