changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "end_of_records": {
+ "description": "Whether all available records have been returned",
+ "type": "boolean"
+ },
+ "occurrences": {
+ "description": "Array of occurrence records",
+ "items": {
+ "properties": {
+ "basis_of_record": {
+ "description": "Type of record (specimen, observation, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "catalog_number": {
+ "description": "Catalog number in collection",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "collection": {
+ "description": "Collection code within institution",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "Country where occurrence was recorded",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "event_date": {
+ "description": "Date of occurrence observation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "institution": {
+ "description": "Institution code maintaining the record",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "key": {
+ "description": "GBIF occurrence key identifier",
+ "type": "number"
+ },
+ "latitude": {
+ "description": "Decimal latitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "locality": {
+ "description": "Specific locality description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Decimal longitude coordinate",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "scientific_name": {
+ "description": "Scientific name recorded for occurrence",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "state_province": {
+ "description": "State or province of occurrence",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "key",
+ "scientific_name",
+ "latitude",
+ "longitude",
+ "country",
+ "state_province",
+ "locality",
+ "event_date",
+ "basis_of_record",
+ "institution",
+ "collection",
+ "catalog_number"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of occurrence records",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "end_of_records",
+ "occurrences"
+ ],
+ "type": "object"
+}