action superset_post_annotation_layer { label: "post_annotation_layer" description: "Create an Annotation layer" provider: superset method: POST path: "/annotation_layer/" 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" } } } 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" } } } } } }