action bigoven_review_post_reply { label: "POST a reply to a given review. The date will be set by server. Note that replies no longer have star ratings, only top-level reviews do." provider: bigoven method: POST path: "/recipe/review/{reviewId}/replies" encoding: form input: { type: "object" properties: { Comment: { type: "string" description: "The comment. If mentioning any user(s) (optional), include them as @username in the text body. Do not use @ symbol for anything but mentioning @usernames." } reviewId: { type: "string" } } required: ["reviewId"] additionalProperties: false } output: { type: "object" properties: { Comment: { type: "string" } CreationDate: { type: "string" format: "date-time" } ID: { type: "string" } LastModified: { type: "string" format: "date-time" } Poster: { type: "object" properties: { FirstName: { type: "string" } LastName: { type: "string" } PhotoUrl: { type: "string" } UserID: { type: "integer" format: "int32" } UserName: { type: "string" } } } ReviewID: { type: "string" } } } }