action superset_put_annotation_layer_pk { label: "put_annotation_layer_pk" description: "Update an Annotation layer" provider: superset method: PUT path: "/annotation_layer/{pk}" encoding: json input: { type: "object" properties: { descr: { type: "string" description: "Give a description for this annotation layer" } name: { type: "string" description: "The annotation layer name" } pk: { type: "integer" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { id: { type: "number" } result: { type: "object" properties: { descr: { type: "string" description: "Give a description for this annotation layer" } name: { type: "string" description: "The annotation layer name" } } } } } }