BigOven · Example Payload

Recipe_Categories

Recipe

Recipe_Categories 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": "Recipe_Categories",
  "method": "GET",
  "path": "/recipe/categories",
  "tags": [
    "Recipe"
  ],
  "summary": "Get a list of recipe categories (the ID field can be used for include_cat in search parameters)",
  "parameters": [],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "items": {
        "$ref": "#/components/schemas/BigOven.Model.RecipeCategory"
      },
      "type": "array"
    }
  }
}