iNaturalist · Schema

PostComment

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology

Properties

Name Type Description
comment object
View JSON Schema on GitHub

JSON Schema

postcomment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PostComment",
  "type": "object",
  "properties": {
    "comment": {
      "type": "object",
      "properties": {
        "parent_type": {
          "type": "string",
          "enum": [
            "Observation",
            "ListedTaxon",
            "AssessmentSection",
            "ObservationField",
            "Post",
            "TaxonChange"
          ]
        },
        "parent_id": {
          "type": "integer"
        },
        "body": {
          "type": "string"
        }
      }
    }
  }
}