action superset_get_annotation_layer_pk_annotation_annotation_id { label: "get_annotation_layer_pk_annotation_annotation_id" description: "Get an Annotation layer" provider: superset method: GET path: "/annotation_layer/{pk}/annotation/{annotation_id}" encoding: json input: { type: "object" properties: { annotation_id: { type: "integer" } pk: { type: "integer" } q: { type: "string" } } required: ["annotation_id", "pk"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" description: "The item id" } result: { type: "object" required: ["layer"] properties: { end_dttm: { type: "string" format: "date-time" } id: { type: "integer" format: "int32" } json_metadata: { type: "string" } layer: { type: "object" properties: { id: { type: "integer" format: "int32" } name: { type: "string" } } } long_descr: { type: "string" } short_descr: { type: "string" } start_dttm: { type: "string" format: "date-time" } } } } } }