Response model for fetching multiple recipes.
Parameters
Output
Encoding
application/jsonrecipes
array
Required
No description available.
Errors
NotFound
InvalidUri
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound"
},
{
"name": "InvalidUri"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"recipes"
],
"properties": {
"recipes": {
"type": "array",
"items": {
"ref": "blue.recipes.feed.defs#recipeView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uris"
],
"properties": {
"uris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
}
}
}
},
"description": "Response model for fetching multiple recipes."
}