changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "parks": {
+ "description": "List of parks",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Park description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "designation": {
+ "description": "Park designation (e.g., National Park)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "full_name": {
+ "description": "Full official name of park",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Latitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Longitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Short name of park",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "park_code": {
+ "description": "4-letter NPS park code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "states": {
+ "description": "State codes where park is located",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Official NPS website URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of parks in this response",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total number of parks matching criteria",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "returned",
+ "parks"
+ ],
+ "type": "object"
+}