{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SynonymItem", "title": "SynonymItem", "type": "object", "properties": { "id": { "type": "string", "description": "ID of the synonym item." }, "synonyms": { "type": "array", "items": { "type": "string" } }, "root": { "type": "string", "description": "Root term for one-way synonyms." } } }