openapi: 3.0.1 info: title: TIGRO description: Explore occurrences, co-occurrences and textual contexts of forms and lems in a corpus which is defined externally. version: 1.0.0 servers: - url: 'http://192.168.10.245' paths: /simple_get_query: post: summary: Submit a simple query. description: Submit a simple query in a simple way. requestBody: required: true content: application/json: schema: type: object properties: queryList: type: array items: type: object properties: stringa: type: string espansa: type: integer raddoppiata: type: integer tipo: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: object properties: cod: type: integer forma: type: string lemma: type: string cat_gr: type: string disambiguatore: type: string occ: type: integer '400': description: Bad request '500': description: Internal server error components: schemas: Query: type: object properties: cod: type: integer forma: type: string lemma: type: string cat_gr: type: string disambiguatore: type: string occ: type: integer required: - cod - occ