BigOven · Example Payload

Collection_Getcollectionmeta

Collection

Collection_Getcollectionmeta 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": "Collection_GetCollectionMeta",
  "method": "GET",
  "path": "/collection/{id}/meta",
  "tags": [
    "Collection"
  ],
  "summary": "Gets a recipe collection metadata. A recipe collection is a curated set of recipes.",
  "parameters": [
    {
      "name": "id",
      "in": "path",
      "required": true,
      "description": "the collection identifier",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Model.API2.CollectionInfo"
    }
  }
}