-
- Example schema
-
-
-
-```json
-{
- "classes": [
- {
- "class": "Category",
- "description": "A Jeopardy! category",
- ...
- "properties": [
- {
- "dataType": [
- "text"
- ],
- "description": "The title of the category",
- "name": "title",
- "tokenization": "word"
- }
- ],
- ...
- "vectorizer": "text2vec-openai"
- },
- {
- "class": "Question",
- ...
- "properties": [
- {
- "dataType": [
- "text"
- ],
- "description": "Question asked to the contestant",
- ...
- "name": "question",
- "tokenization": "word"
- },
- {
- "dataType": [
- "text"
- ],
- "description": "Answer provided by the contestant",
- ...
- "name": "answer",
- "tokenization": "word"
- },
- {
- "dataType": [
- "int"
- ],
- "description": "Points that the question was worth",
- ...
- "name": "points"
- },
- {
- "dataType": [
- "text"
- ],
- "description": "Jeopardy round",
- ...
- "name": "round"
- },
- {
- "dataType": [
- "Category"
- ],
- "description": "The category of the question",
- ...
- "name": "hasCategory"
- }
- ...
- ],
- ...
- "vectorizer": "text2vec-openai"
- }
- ]
-}
-```
-
-
-
\ No newline at end of file
diff --git a/docs/academy/_snippets/preview.mdx b/docs/academy/_snippets/preview.mdx
deleted file mode 100644
index f7dcdb5bc..000000000
--- a/docs/academy/_snippets/preview.mdx
+++ /dev/null
@@ -1,5 +0,0 @@
-:::note Preview unit
-This is a preview version of this unit.
-So some sections are not yet complete - such as videos and quiz questions.
-Please check back later for the full version, and in the meantime, feel free to provide any feedback through the comments below.
-:::
\ No newline at end of file
diff --git a/docs/academy/deployment/_category_.json b/docs/academy/deployment/_category_.json
deleted file mode 100644
index ae3b74b9a..000000000
--- a/docs/academy/deployment/_category_.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "label": "Deployment",
- "position": 50
-}
\ No newline at end of file
diff --git a/docs/academy/deployment/k8s/10_kubernetes_basics.mdx b/docs/academy/deployment/k8s/10_kubernetes_basics.mdx
deleted file mode 100644
index 4fd96a922..000000000
--- a/docs/academy/deployment/k8s/10_kubernetes_basics.mdx
+++ /dev/null
@@ -1,122 +0,0 @@
----
-title: Create a Kubernetes cluster
----
-
-**Kubernetes** is an open-source *container orchestration* platform. It means that you can use Kubernetes to deploy, scale, and manage [containerized](https://www.docker.com/resources/what-container/) applications.
-
-In production, Kubernetes is used to manage a cluster of nodes, such as those located on cloud providers like AWS, Google Cloud, or Azure, or on your own on-premises infrastructure.
-
-Here, you learn how to do this using **Minikube**, a handy tool that allows you to run a Kubernetes cluster on your local machine for development and testing purposes.
-
-:::info What if I have a production Kubernetes cluster?
-If you are looking to deploy Weaviate on a production Kubernetes cluster, the steps are similar. You will just need to replace Minikube with your production Kubernetes cluster.
-
-As there are many variations in Kubernetes deployments, we recommend you follow the deployment instructions provided by your cloud provider or Kubernetes distribution for this purpose.
-:::
-
-##