action superset_put_annotation_layer_pk_annotation_annotation_id { label: "put_annotation_layer_pk_annotation_annotation_id" description: "Update an Annotation layer" provider: superset method: PUT path: "/annotation_layer/{pk}/annotation/{annotation_id}" encoding: json input: { type: "object" properties: { annotation_id: { type: "integer" } end_dttm: { type: "string" format: "date-time" description: "The annotation end date time" } json_metadata: { type: "string" description: "JSON metadata" } long_descr: { type: "string" description: "A long description" } pk: { type: "integer" } short_descr: { type: "string" description: "A short description" } start_dttm: { type: "string" format: "date-time" description: "The annotation start date time" } } required: ["annotation_id", "pk"] additionalProperties: false } output: { type: "object" properties: { id: { type: "number" } result: { type: "object" properties: { end_dttm: { type: "string" format: "date-time" description: "The annotation end date time" } json_metadata: { type: "string" description: "JSON metadata" } long_descr: { type: "string" description: "A long description" } short_descr: { type: "string" description: "A short description" } start_dttm: { type: "string" format: "date-time" description: "The annotation start date time" } } } } } }