action bigoven_images_get_recipe_photos { label: "Get all the photos for a recipe" provider: bigoven method: GET path: "/recipe/{recipeId}/photos" encoding: json input: { type: "object" properties: { pg: { type: "integer" format: "int32" } recipeId: { type: "integer" format: "int32" } rpp: { type: "integer" format: "int32" } } required: ["recipeId"] additionalProperties: false } output: { type: "object" properties: { ResultCount: { type: "integer" format: "int32" description: "Gets or sets the result count." } Results: { type: "array" description: "Gets or sets the results." items: { type: "object" properties: { Caption: { type: "string" } CreationDate: { type: "string" } ImageID: { type: "integer" format: "int64" } IsPrimary: { type: "boolean" } MaxImageSquare: { type: "integer" format: "int32" } PhotoUrl: { type: "string" } Poster: { type: "object" properties: { FirstName: { type: "string" } LastName: { type: "string" } PhotoUrl: { type: "string" } UserID: { type: "integer" format: "int32" } UserName: { type: "string" } } } } } } } } }