changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "activities": {
+ "description": "Activities available in the park",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "addresses": {
+ "description": "Physical addresses",
+ "items": {
+ "properties": {
+ "city": {
+ "description": "City",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "line1": {
+ "description": "Address line 1",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "postalCode": {
+ "description": "Postal code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stateCode": {
+ "description": "State code",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "description": {
+ "description": "Detailed park description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "designation": {
+ "description": "Park designation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "directions_info": {
+ "description": "Directions and access information",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "entrance_fees": {
+ "description": "Entrance fee information",
+ "items": {
+ "properties": {
+ "cost": {
+ "description": "Fee cost",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Fee description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Fee type title",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "full_name": {
+ "description": "Full official name of park",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "images": {
+ "description": "Park images",
+ "items": {
+ "properties": {
+ "alt": {
+ "description": "Alt text for accessibility",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Image title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "latitude": {
+ "description": "Latitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Longitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Short name of park",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "operating_hours": {
+ "description": "Operating hours information",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Description of operating hours",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Name of operating hours entry",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "park_code": {
+ "description": "4-letter NPS park code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "states": {
+ "description": "State codes where park is located",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "topics": {
+ "description": "Topics related to the park",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "description": "Official NPS website URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "weather_info": {
+ "description": "Weather information for the park",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "park_code",
+ "full_name",
+ "name",
+ "description"
+ ],
+ "type": "object"
+}