{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/participation-stats", "title": "Participation Stats", "type": "object", "properties": { "all": { "type": "array", "items": { "type": "integer" } }, "owner": { "type": "array", "items": { "type": "integer" } } }, "required": [ "all", "owner" ] }