{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PublishParameters", "title": "PublishParameters", "type": "object", "description": "Metadata for the published version.", "properties": { "comment": { "type": "string", "description": "A comment to provide context on publishing the flow.", "example": "Publishing the latest version" }, "tagIds": { "type": "array", "description": "Tag IDs appropriate to this version. It must be one of 'Live', 'Test', 'Dev', 'Latest.", "example": [ "Live" ], "items": { "type": "string" } } } }