changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "city": {
+ "description": "City name associated with the IP address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "Country code associated with the IP address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ip": {
+ "description": "The IP address that was looked up",
+ "type": "string"
+ },
+ "latitude": {
+ "description": "Latitude coordinate of the IP geolocation",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Longitude coordinate of the IP geolocation",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "org": {
+ "description": "Organization or ISP name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "postal": {
+ "description": "Postal code associated with the IP address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "region": {
+ "description": "Region or state associated with the IP address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "timezone": {
+ "description": "Timezone associated with the IP address",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "ip",
+ "city",
+ "region",
+ "country",
+ "latitude",
+ "longitude",
+ "org",
+ "postal",
+ "timezone"
+ ],
+ "type": "object"
+}