action superset_get_annotation_layer_pk_annotation { label: "get_annotation_layer_pk_annotation" description: "Get a list of Annotation layers, use Rison or JSON query parameters for filtering, sorting, pagination and for selecting specific columns and metadata." provider: superset method: GET path: "/annotation_layer/{pk}/annotation/" encoding: json input: { type: "object" properties: { pk: { type: "integer" } q: { type: "string" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { count: { type: "number" description: "The total record count on the backend" } ids: { type: "array" description: "A list of annotation ids" items: { type: "string" } } result: { type: "array" description: "The result from the get list query" items: { type: "object" properties: { changed_by: { type: "object" required: ["first_name"] properties: { first_name: { type: "string" } id: { type: "integer" format: "int32" } } } changed_on_delta_humanized: { type: "object" } created_by: { type: "object" required: ["first_name"] properties: { first_name: { type: "string" } id: { type: "integer" format: "int32" } } } end_dttm: { type: "string" format: "date-time" } id: { type: "integer" format: "int32" } long_descr: { type: "string" } short_descr: { type: "string" } start_dttm: { type: "string" format: "date-time" } } } } } } }