action netboxdemo_extras_image_attachments_list { label: "extras_image-attachments_list" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/extras/image-attachments/" encoding: json input: { type: "object" properties: { limit: { type: "integer" } offset: { type: "integer" } } additionalProperties: false } output: { type: "object" required: ["count", "results"] properties: { count: { type: "integer" } next: { type: "string" format: "uri" } previous: { type: "string" format: "uri" } results: { type: "array" items: { type: "object" required: ["content_type", "object_id", "image_height", "image_width"] properties: { content_type: { type: "string" } created: { type: "string" format: "date-time" } id: { type: "integer" } image: { type: "string" format: "uri" } image_height: { type: "integer" } image_width: { type: "integer" } name: { type: "string" } object_id: { type: "integer" } parent: { type: "object" } } } } } } }