Commit 667eba15 authored by Trishna Saeharaseelan's avatar Trishna Saeharaseelan
Browse files

refactor(descriptions): all 'True' to 'true' and 'False' to 'false'

......@@ -44,7 +44,7 @@ message_header = {
"encoded": {
"type": "boolean",
"description": "Indicate that message raw (encoded) or decoded. "
+ "Options: encoded=True, decoded=False",
+ "Options: encoded=true, decoded=false",
"example": False,
},
"delivery_type": {
......
......@@ -32,8 +32,8 @@ encoded_schema = {
"is_binary": {
"type": "boolean",
"description": (
"True if the data field contains binary format data encoded as base64."
+ " False if the data field contains ascii content such as NMEA."
"true if the data field contains binary format data encoded as base64."
+ " false if the data field contains ascii content such as NMEA."
),
"example": True,
},
......
......@@ -91,7 +91,7 @@ mission_plan_schema = {
"emergency": {
"type": "boolean",
"description": "To indicate if this is an emergency. "
+ "True = emergency and False = no emergency",
+ "true = emergency and false = no emergency",
"default": False,
"example": False,
},
......
......@@ -14,7 +14,7 @@ sensor_schema = {
},
"sensor_on": {
"type": "boolean",
"description": "Sensor switched on (True) or off (False)",
"description": "Sensor switched on (true) or off (false)",
"example": True,
},
"additional_data": {
......
......@@ -71,7 +71,7 @@
"type":"string"
},
"encoded":{
"description":"Indicate that message raw (encoded) or decoded. Options: encoded=True, decoded=False",
"description":"Indicate that message raw (encoded) or decoded. Options: encoded=true, decoded=false",
"example":false,
"type":"boolean"
},
......@@ -117,7 +117,7 @@
},
"emergency": {
"default": false,
"description": "To indicate if this is an emergency. True = emergency and False = no emergency",
"description": "To indicate if this is an emergency. true = emergency and false = no emergency",
"example": false,
"type": "boolean"
},
......@@ -212,7 +212,7 @@
"type":"string"
},
"is_binary":{
"description":"True if the data field contains binary format data encoded as base64. False if the data field contains ascii content such as NMEA.",
"description":"true if the data field contains binary format data encoded as base64. false if the data field contains ascii content such as NMEA.",
"example":true,
"type":"boolean"
},
......@@ -313,7 +313,7 @@
"type":"string"
},
"is_binary":{
"description":"True if the data field contains binary format data encoded as base64. False if the data field contains ascii content such as NMEA.",
"description":"true if the data field contains binary format data encoded as base64. false if the data field contains ascii content such as NMEA.",
"example":true,
"type":"boolean"
},
......@@ -716,7 +716,7 @@
"type":"object"
},
"sensor_on":{
"description":"Sensor switched on (True) or off (False)",
"description":"Sensor switched on (true) or off (false)",
"example":true,
"type":"boolean"
},
......@@ -795,7 +795,7 @@
"type":"string"
},
"is_binary":{
"description":"True if the data field contains binary format data encoded as base64. False if the data field contains ascii content such as NMEA.",
"description":"true if the data field contains binary format data encoded as base64. false if the data field contains ascii content such as NMEA.",
"example":true,
"type":"boolean"
},
......
......@@ -35,7 +35,7 @@ message_header = {
"encoded": {
"type": "boolean",
"description": "Indicate that message raw (encoded) or decoded. "
+ "Options: encoded=True, decoded=False",
+ "Options: encoded=true, decoded=false",
"example": False,
},
"delivery_type": {
......@@ -168,7 +168,7 @@ mission_plan_schema = {
"emergency": {
"default": False,
"description": "To indicate if this is an emergency. "
+ "True = emergency and False = no emergency",
+ "true = emergency and false = no emergency",
"example": False,
"type": "boolean",
},
......@@ -437,7 +437,7 @@ sensor_schema = {
},
"sensor_on": {
"type": "boolean",
"description": "Sensor switched on (True) or off (False)",
"description": "Sensor switched on (true) or off (false)",
"example": True,
},
"additional_data": {
......
......@@ -69,7 +69,7 @@
"type": "string"
},
"encoded": {
"description": "Indicate that message raw (encoded) or decoded. Options: encoded=True, decoded=False",
"description": "Indicate that message raw (encoded) or decoded. Options: encoded=true, decoded=false",
"example": false,
"type": "boolean"
},
......@@ -112,7 +112,7 @@
},
"emergency": {
"default": false,
"description": "To indicate if this is an emergency. True = emergency and False = no emergency",
"description": "To indicate if this is an emergency. true = emergency and false = no emergency",
"example": false,
"type": "boolean"
},
......@@ -592,7 +592,7 @@
}
},
"sensor_on": {
"description": "Sensor switched on (True) or off (False)",
"description": "Sensor switched on (true) or off (false)",
"example": true,
"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