@kui-shell/plugin-tutorials
Version:
IBM Cloud shell plugin for tutorials
27 lines (26 loc) • 647 B
JSON
{
"name": "wookie",
"description": "Combine two sci-fi APIs into a new one using if and retain",
"level": "Intermediate",
"kind": "composition",
"api": {
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"search"
],
"type": "object",
"properties": {
"search": {
"type": "string",
"default": "luke skywalker",
"description": "The search parameter is a string representing the name of a character"
}
},
"responses": {
"answer": {
"type": "string",
"description": "The accumulated data on the given character"
}
}
}
}