openapi: 3.0.2 info: title: ThinkSchool By Spext description: Chat with the Think School library on Spext. version: 'v1' servers: - url: https://plugin.thinkschool.spext.com paths: /search: post: operationId: search summary: Search from the video library of Think School 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 from the video library of Think School required: true