BigOven · Example Payload

Review_Postreply

Review

Review_Postreply is an example object payload from BigOven, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathtagssummaryparametersresponse

Example Payload

Raw ↑
{
  "operationId": "Review_PostReply",
  "method": "POST",
  "path": "/recipe/review/{reviewId}/replies",
  "tags": [
    "Review"
  ],
  "summary": "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.",
  "parameters": [
    {
      "name": "reviewId",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Model.API.Reply"
    }
  }
}