changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of results returned",
+ "type": "integer"
+ },
+ "results": {
+ "description": "Array of geolocation results or error objects",
+ "items": {
+ "oneOf": [
+ {
+ "properties": {
+ "as_number": {
+ "description": "Autonomous System number and name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "city": {
+ "description": "City name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "Country name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country_code": {
+ "description": "ISO 3166-1 alpha-2 country code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ip": {
+ "description": "The queried IP address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "isp": {
+ "description": "Internet Service Provider name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Latitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Longitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "organization": {
+ "description": "Organization name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "postal_code": {
+ "description": "ZIP or postal code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "region": {
+ "description": "State/region name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "timezone": {
+ "description": "IANA timezone identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "ip",
+ "country",
+ "country_code",
+ "region",
+ "city",
+ "postal_code",
+ "latitude",
+ "longitude",
+ "timezone",
+ "isp",
+ "organization",
+ "as_number"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "error": {
+ "description": "Error message from lookup failure",
+ "type": "string"
+ },
+ "ip": {
+ "description": "The queried IP address",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "ip",
+ "error"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "results"
+ ],
+ "type": "object"
+}