action signl4_get_alerts_alert_id_annotations { label: "Get annotations of an alert" description: "Get annotations of an alert by id." provider: signl4 method: GET path: "/alerts/{alertId}/annotations" encoding: json input: { type: "object" properties: { alertId: { type: "string" } } required: ["alertId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { annotationType: { type: "integer" format: "int32" } id: { type: "string" } text: { type: "string" } timestamp: { type: "string" format: "date-time" } userId: { type: "string" } } additionalProperties: false } } }