action bigoven_recipe_recent_views { label: "Get a list of recipes that the authenticated user has most recently viewed" provider: bigoven method: GET path: "/recipes/recentviews" encoding: json input: { type: "object" properties: { pg: { type: "integer" format: "int32" } rpp: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { date: { type: "string" format: "date-time" } recipeInfo: { type: "object" properties: { Category: { type: "string" } CreationDate: { type: "string" format: "date-time" } Cuisine: { type: "string" } HasVideos: { type: "boolean" } IsBookmark: { type: "boolean" } IsPrivate: { type: "boolean" } IsRecipeScan: { type: "boolean" } Microcategory: { type: "string" } PhotoUrl: { type: "string" } Poster: { type: "object" properties: { FirstName: { type: "string" } LastName: { type: "string" } PhotoUrl: { type: "string" } UserID: { type: "integer" format: "int32" } UserName: { type: "string" } } } RecipeID: { type: "integer" format: "int32" } ReviewCount: { type: "integer" format: "int32" } Servings: { type: "number" format: "double" } StarRating: { type: "number" format: "double" } Subcategory: { type: "string" } Title: { type: "string" } TotalTries: { type: "integer" format: "int32" } WebURL: { type: "string" } } } } } } }