iNaturalist · Schema

TaxaAutocompleteResponse

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology
View JSON Schema on GitHub

JSON Schema

taxaautocompleteresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TaxaAutocompleteResponse",
  "allOf": [
    {
      "$ref": "#/definitions/BaseResponse"
    },
    {
      "required": [
        "results"
      ],
      "properties": {
        "results": {
          "type": "array",
          "items": {
            "$ref": "#/definitions/AutocompleteTaxon"
          }
        }
      }
    }
  ]
}