openapi: 3.0.3 info: title: Stadt MG - Drohne description: Stadt MG - Drohne version: 1.0.0 tags: - name: Drohne servers: - url: 'https://drohne.masasana.ai' paths: /detect: post: tags: - Drohne requestBody: content: image/*: schema: type: string format: binary responses: 200: content: application/json: schema: type: string format: uuid description: ok /image/{image_id}: get: tags: - Drohne parameters: - name: image_id required: true in: path schema: type: string format: uuid responses: 200: content: image/*: schema: type: string format: binary description: ok 204: description: The image is still in processing and no content can be provided just yet. 404: description: This id doesn't exist