diff --git a/CHANGELOG.md b/CHANGELOG.md
index f763be93de34915fc5ec1a13ae9dbc8958f043e2..5888624c31ed596fdad1fcbb44845ebb2c1a0aea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,10 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
 
 ## [Unreleased]
 
+### Removed
+
+- Removed "repeat" primitive instruction's enum (planning config)
+
 ### Added
 
+<<<<<<< HEAD
 - Goal object in mission_plan message that consists of a GeoJSON feature (representing the part of primitive that is currently the goal of the given mission plan).
 - A `partial` flag that indicates if a mission plan is a partial plan or the entire mission plan
+=======
+- Added "informational" to enum for primitive's instruction enum (planning configuration)
+>>>>>>> 7f768c7 (refactor(planning_configuration): update primitive instruction's enum and new goal obj)
 - Options to primitives (under planning_configuration message) which is only a property when a primitive has an instruction of "follow" or "navigate_to"
 - Validate message_ID matches uuid format
 - Add definition of instruction_set message
diff --git a/formats/planning_configuration.py b/formats/planning_configuration.py
index c679e85da6fa2a4226ac149f1b497b29921b1d67..71c9aa767f1e57181ec49ca662df6030eb3f587b 100644
--- a/formats/planning_configuration.py
+++ b/formats/planning_configuration.py
@@ -229,8 +229,8 @@ primitive_schema = {
                     "enum": [
                         "stay_inside",
                         "stay_outside",
-                        "repeat",
                         "cover",
+                        "informational",
                     ],
                     "description": "How the associated feature should be used",
                 },
diff --git a/project/soar/swagger.json b/project/soar/swagger.json
index 8dc6f1155a196fa467974d77ced39006fe07b564..734c7420855b5b2423a40d8accd1824b13e267bf 100644
--- a/project/soar/swagger.json
+++ b/project/soar/swagger.json
@@ -1998,8 +1998,8 @@
                       "enum": [
                         "stay_inside",
                         "stay_outside",
-                        "repeat",
-                        "cover"
+                        "cover",
+                        "informational"
                       ],
                       "type": "string"
                     }
@@ -2251,8 +2251,8 @@
                             "enum": [
                               "stay_inside",
                               "stay_outside",
-                              "repeat",
-                              "cover"
+                              "cover",
+                              "informational"
                             ],
                             "type": "string"
                           }