action bigoven_images_get_scan_images { label: "Gets a list of RecipeScan images for the recipe. There will be at most 3 per recipe." provider: bigoven method: GET path: "/recipe/{recipeId}/scans" encoding: json input: { type: "object" properties: { recipeId: { type: "integer" format: "int32" } } required: ["recipeId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { Caption: { type: "string" } CreationDate: { type: "string" } ImageID: { type: "integer" format: "int64" } ImageSquares: { type: "array" items: { type: "integer" format: "int32" } } ImageURL: { type: "string" } ImageURL120: { type: "string" } ImageURL128: { type: "string" } ImageURL200: { type: "string" } ImageURL256: { type: "string" } ImageURL48: { type: "string" } ImageURL64: { type: "string" } IsPrimary: { type: "boolean" } MaxImageSquare: { type: "integer" format: "int32" } Poster: { type: "object" properties: { FirstName: { type: "string" } ImageUrl48: { type: "string" } IsKitchenHelper: { type: "boolean" } IsPremium: { type: "boolean" } IsUsingRecurly: { type: "boolean" } LastName: { type: "string" } MemberSince: { type: "string" format: "date-time" } PhotoUrl: { type: "string" } PhotoUrl48: { type: "string" } PremiumExpiryDate: { type: "string" format: "date-time" } UserID: { type: "integer" format: "int32" } UserName: { type: "string" } WebUrl: { type: "string" } } } } } } }