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