BigOven · Example Payload

Get Recipe Recipeid Review

Review

Get Recipe Recipeid Review 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": "get--recipe-recipeId-review",
  "method": "GET",
  "path": "/recipe/{recipeId}/review",
  "tags": [
    "Review"
  ],
  "summary": "Get *my* review for the recipe {recipeId}, where \"me\" is determined by standard authentication headers",
  "parameters": [
    {
      "name": "recipeId",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Model.API.Review"
    }
  }
}