action netbox_extras_image_attachments_read { label: "extras_image-attachments_read" description: "" provider: netbox method: GET path: "/extras/image-attachments/{id}/" encoding: json output: { type: "object" required: ["content_type", "image_height", "image_width", "object_id"] properties: { content_type: { type: "string" } created: { type: "string" format: "date-time" } display: { type: "string" } id: { type: "integer" } image: { type: "string" format: "uri" } image_height: { type: "integer" } image_width: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } object_id: { type: "integer" } parent: { type: "object" } url: { type: "string" format: "uri" } } } }