{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskAddFollowersRequest", "title": "TaskAddFollowersRequest", "type": "object", "properties": { "followers": { "description": "An array of strings identifying users. These can either be the string \"me\", an email, or the gid of a user.", "type": "array", "items": { "type": "string" }, "example": [ "13579", "321654" ] } }, "required": [ "followers" ] }