{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FilterListDetail", "title": "FilterListDetail", "type": "object", "properties": { "id": { "type": "string", "description": "List identifier" }, "name": { "type": "string", "description": "List name" }, "type": { "type": "string", "description": "List type" }, "entries": { "type": "array", "items": { "$ref": "#/components/schemas/ListEntry" }, "description": "List entries" } } }