From a6def5051530449115b852d03ca7c0c96e6622e5 Mon Sep 17 00:00:00 2001
From: HAUTBOIS Aurelie <aurelie.hautbois@ext.soprasteria.com>
Date: Mon, 18 Jan 2021 18:17:24 +0100
Subject: [PATCH] add exploration doctype

---
 docs/ecolyo/project_architecture/doctypes.md | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/docs/ecolyo/project_architecture/doctypes.md b/docs/ecolyo/project_architecture/doctypes.md
index 8cc7700..ecd2c8e 100644
--- a/docs/ecolyo/project_architecture/doctypes.md
+++ b/docs/ecolyo/project_architecture/doctypes.md
@@ -425,6 +425,24 @@ This doctype is used to store all quiz.
   }
 ```
 
+## Exploration
+
+### Description
+
+This doctype is used to store all explorations.
+
+### Doctype
+
+**`com.grandlyon.ecolyo.exploration`**
+
+### Structure
+
+| Field       | Type                 | Description                                                                                                      |
+| ----------- | -------------------- | ---------------------------------------------------------------------------------------------------------------- |
+| \_id        | string               | exploration id - respect the format _EXPLORATION00X_                                                             |
+| state       | UserExplorationState | State of the exploration<br><br>UserExplorationState enum<br>- _UNLOCKED = 0_<br>- _ONGOING = 1_<br>- _DONE = 2_ |
+| description | string               | description of the exploration                                                                                   |
+
 ## Duel
 
 ### Description
-- 
GitLab