openapi: 3.0.2 info: title: RPP by Spext description: Chat with the Guy Kawasaki's Remarkable People Podcast library on Spext. version: 'v1' servers: - url: https://plugin.remarkablepeoplepodcast.spext.com paths: /search: post: operationId: search summary: Search Guy Kawasaki's Remarkable People podcast on Spext requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/searchRequest' responses: "200": description: Successful Response /search-suggestions: get: operationId: search-suggestions summary: Get list of top items that can be searched responses: "200": description: Successful Response components: schemas: searchRequest: type: object required: - search properties: query: type: string description: Search Guy Kawasaki's Remarkable People podcast on Spext required: true