{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FilterSubscription",
"title": "FilterSubscription",
"additionalProperties": false,
"description": "Details of a user or group subscribing to a filter.",
"properties": {
"group": {
"allOf": [
{
"$ref": "#/components/schemas/GroupName"
}
],
"description": "The group subscribing to filter.",
"readOnly": true
},
"id": {
"description": "The ID of the filter subscription.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"user": {
"allOf": [
{
"$ref": "#/components/schemas/User"
}
],
"description": "The user subscribing to filter.",
"readOnly": true
}
},
"type": "object"
}