Wordnik · Schema

Note

Note schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
appliesTo array
noteType string
pos integer
value string
View JSON Schema on GitHub

JSON Schema

wordnik-note-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-note-schema.json",
  "title": "Note",
  "description": "Note schema from Wordnik",
  "type": "object",
  "properties": {
    "appliesTo": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "noteType": {
      "type": "string"
    },
    "pos": {
      "type": "integer",
      "format": "int32"
    },
    "value": {
      "type": "string"
    }
  }
}