Commit 106caf47 authored by Trishna Saeharaseelan's avatar Trishna Saeharaseelan
Browse files

refactor(mission plan): emeregncy examples and description

parent bebc2aa5
Pipeline #115170 passed with stages
in 1 minute and 9 seconds
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
"message_type": "mission_plan", "message_type": "mission_plan",
"platform_ID": "5-ah1", "platform_ID": "5-ah1",
"autonomy_engine_plan_ID": 1, "autonomy_engine_plan_ID": 1,
"emergency": false,
"plan": [ "plan": [
{ {
"action": "move", "action": "move",
......
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
"message_type": "mission_plan", "message_type": "mission_plan",
"platform_ID": "ecosub-2", "platform_ID": "ecosub-2",
"autonomy_engine_plan_ID": 1, "autonomy_engine_plan_ID": 1,
"emergency": false,
"plan": [ "plan": [
{ {
"action": "move", "action": "move",
......
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
"message_type": "mission_plan", "message_type": "mission_plan",
"platform_ID": "reav-60-1", "platform_ID": "reav-60-1",
"autonomy_engine_plan_ID": 1, "autonomy_engine_plan_ID": 1,
"emergency": false,
"plan": [ "plan": [
{ {
"target_waypoint_latitude": -4.187143188645706, "target_waypoint_latitude": -4.187143188645706,
......
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
"message_type": "mission_plan", "message_type": "mission_plan",
"platform_ID": "ecosub-2", "platform_ID": "ecosub-2",
"autonomy_engine_plan_ID": 1, "autonomy_engine_plan_ID": 1,
"emergency": false,
"plan": [ "plan": [
{ {
"action": "move", "action": "move",
......
...@@ -91,7 +91,7 @@ mission_plan_schema = { ...@@ -91,7 +91,7 @@ mission_plan_schema = {
"emergency": { "emergency": {
"type": "boolean", "type": "boolean",
"description": "To indicate if this is an emergency. " "description": "To indicate if this is an emergency. "
+ "1 = emergency and 0 = no emergency", + "True = emergency and False = no emergency",
"default": False, "default": False,
"example": False, "example": False,
}, },
......
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
}, },
"emergency": { "emergency": {
"default": false, "default": false,
"description": "To indicate if this is an emergency. 1 = emergency and 0 = no emergency", "description": "To indicate if this is an emergency. True = emergency and False = no emergency",
"example": false, "example": false,
"type": "boolean" "type": "boolean"
}, },
......
...@@ -168,7 +168,7 @@ mission_plan_schema = { ...@@ -168,7 +168,7 @@ mission_plan_schema = {
"emergency": { "emergency": {
"default": False, "default": False,
"description": "To indicate if this is an emergency. " "description": "To indicate if this is an emergency. "
+ "1 = emergency and 0 = no emergency", + "True = emergency and False = no emergency",
"example": False, "example": False,
"type": "boolean", "type": "boolean",
}, },
......
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
}, },
"emergency": { "emergency": {
"default": false, "default": false,
"description": "To indicate if this is an emergency. 1 = emergency and 0 = no emergency", "description": "To indicate if this is an emergency. True = emergency and False = no emergency",
"example": false, "example": false,
"type": "boolean" "type": "boolean"
}, },
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment