iNaturalist · Schema

NonOwnerIdentification

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology

Properties

Name Type Description
id integer
body string
created_at string
created_at_details object
user object
View JSON Schema on GitHub

JSON Schema

nonowneridentification.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NonOwnerIdentification",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "body": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "created_at_details": {
      "$ref": "#/definitions/DateDetails"
    },
    "user": {
      "$ref": "#/definitions/User"
    }
  }
}