images: {
type: "object",
description: "Object of product IDs and their associated images",
properties: {}, // This empty object allows for any property names (product IDs)
additionalProperties: {
type: "array",
items: {
type: "object",
properties: {
id: { type: "string", description: "The ID of the image" },
name: { type: "string", description: "The name of the image" },
size: { type: "string", description: "The size of the image" },
thumbnailLink: { type: "string", description: "The thumbnail link of the image" },
resourceLink: { type: "string", description: "The resource link of the image" },
title: { type: "string", description: "The title of the image" },
},
required: ["id", "name", "size", "thumbnailLink", "resourceLink", "title"],
},
},
},
This is my param defined in an action and this is my data I am trying to ingest