changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of observations returned",
+ "type": "number"
+ },
+ "observations": {
+ "description": "List of bird observations",
+ "items": {
+ "properties": {
+ "checklist_id": {
+ "description": "eBird checklist submission ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "common_name": {
+ "description": "Common name of the species",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "count": {
+ "description": "Number of birds observed",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "exotic_category": {
+ "description": "Exotic status category if applicable",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Latitude of observation",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "location": {
+ "description": "Location name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "location_id": {
+ "description": "eBird location identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Longitude of observation",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "observed_at": {
+ "description": "ISO datetime of observation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "private_location": {
+ "description": "Whether location is private",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "reviewed": {
+ "description": "Whether observation was reviewed",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "scientific_name": {
+ "description": "Scientific name of the species",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "species_code": {
+ "description": "eBird species code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "valid": {
+ "description": "Whether observation passed validation",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ }
+ },
+ "required": [],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "region_code": {
+ "description": "eBird region code used for the query",
+ "type": "string"
+ }
+ },
+ "required": [
+ "region_code",
+ "count",
+ "observations"
+ ],
+ "type": "object"
+}