Wordnik · Schema

Syllable

Syllable schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
seq integer
text string
type string
View JSON Schema on GitHub

JSON Schema

wordnik-syllable-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-syllable-schema.json",
  "title": "Syllable",
  "description": "Syllable schema from Wordnik",
  "type": "object",
  "properties": {
    "seq": {
      "type": "integer",
      "format": "int32"
    },
    "text": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "stress",
        "secondary",
        "normal"
      ]
    }
  }
}