{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StopwordsSet", "title": "StopwordsSet", "type": "object", "properties": { "id": { "type": "string", "description": "ID of the stopwords set." }, "stopwords": { "type": "array", "items": { "type": "string" } }, "locale": { "type": "string" } } }