addedInput schema / properties / port / anyOf
Added value: +[
+ {
+ "maximum": 65535,
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "items": {
+ "maximum": 65535,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "maxItems": 10,
+ "minItems": 1,
+ "type": "array"
+ }
+]
changedInput schema / properties / port / description
Previous value: -"TCP port to test"New value: +"TCP port, or a list of up to 10 ports, e.g. 443 or [80, 443, 25]"
removedInput schema / properties / port / maximum
Removed value: -65535
removedInput schema / properties / port / minimum
Removed value: -1
removedInput schema / properties / port / type
Removed value: -"integer"
addedOutput schema / properties / partial
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ]
+}
addedOutput schema / properties / portsRequested
Added value: +{
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+}
addedOutput schema / properties / results
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "error": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "ip": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "port": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "state": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "timeMs": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+}