iNaturalist · Schema

UserCountsResponse

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology
View JSON Schema on GitHub

JSON Schema

usercountsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserCountsResponse",
  "allOf": [
    {
      "$ref": "#/definitions/BaseResponse"
    },
    {
      "required": [
        "results"
      ],
      "properties": {
        "results": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "count": {
                "type": "integer"
              },
              "user": {
                "$ref": "#/definitions/User"
              }
            }
          }
        }
      }
    }
  ]
}