+
+
+
+
diff --git a/docs/api-spec.yaml b/docs/api-spec.yaml
new file mode 100644
index 00000000..8f51c119
--- /dev/null
+++ b/docs/api-spec.yaml
@@ -0,0 +1,70 @@
+# Licensed to Elasticsearch B.V. under one or more contributor
+# license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright
+# ownership. Elasticsearch B.V. licenses this file to you under
+# the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+openapi: "3.1.0"
+info:
+ title: Geneve
+ description: Geneve REST API
+ version: 0.2.0
+ contact:
+ name: Domenico Andreoli
+ email: domenico.andreoli@elastic.co
+servers:
+ - url: http://localhost:9256/api
+ description: Geneve
+security:
+ - {}
+paths:
+ "/status":
+ get:
+ tags: ["info"]
+ summary: Return server status
+ operationId: get-status
+ responses:
+ "200":
+ description: A source is returned
+ content:
+ text/plain:
+ schema:
+ type: string
+ properties: {}
+ "/schema/{name}":
+ parameters:
+ - name: name
+ in: path
+ required: true
+ schema:
+ type: string
+ put:
+ tags: ["schema"]
+ summary: Create a new schema
+ operationId: create-schema
+ requestBody:
+ content:
+ text/plain:
+ schema:
+ $ref: "#/components/schemas/schema"
+ responses:
+ "200":
+ description: pippo
+tags:
+ - name: info
+ - name: schema
+components:
+ schemas:
+ schema:
+ type: object