addedInput schema / properties / data
Added value: +{
+ "additionalProperties": false,
+ "description": "The detail this press carries. data.location satisfies an action whose input_type is location; data.url satisfies link. Only these two keys are accepted on a trigger.",
+ "properties": {
+ "location": {
+ "additionalProperties": false,
+ "description": "A shareable geographic location.",
+ "properties": {
+ "address": {
+ "description": "Optional formatted street address.",
+ "maxLength": 255,
+ "type": "string"
+ },
+ "label": {
+ "description": "Optional place name shown to the recipient.",
+ "maxLength": 100,
+ "type": "string"
+ },
+ "latitude": {
+ "description": "Latitude in decimal degrees.",
+ "maximum": 90,
+ "minimum": -90,
+ "type": "number"
+ },
+ "longitude": {
+ "description": "Longitude in decimal degrees.",
+ "maximum": 180,
+ "minimum": -180,
+ "type": "number"
+ }
+ },
+ "required": [
+ "latitude",
+ "longitude"
+ ],
+ "type": "object"
+ },
+ "url": {
+ "description": "An absolute http:// or https:// URL.",
+ "format": "uri",
+ "maxLength": 2048,
+ "type": "string"
+ }
+ },
+ "type": "object"
+}