Wordnik · Schema

Facet

Facet schema from Wordnik

DictionariesDictionaryWord DataEnglishLexicographyPublic APIs

Properties

Name Type Description
facetValues array
name string
View JSON Schema on GitHub

JSON Schema

wordnik-facet-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-facet-schema.json",
  "title": "Facet",
  "description": "Facet schema from Wordnik",
  "type": "object",
  "properties": {
    "facetValues": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FacetValue"
      }
    },
    "name": {
      "type": "string"
    }
  }
}