Wordnik · Schema

SimpleExample

SimpleExample schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
id integer
text string
title string
url string
View JSON Schema on GitHub

JSON Schema

wordnik-simple-example-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-simple-example-schema.json",
  "title": "SimpleExample",
  "description": "SimpleExample schema from Wordnik",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "text": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    }
  }
}