iNaturalist · Schema

Comment

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology

Properties

Name Type Description
id integer
body string
created_at string
created_at_details object
user object
flags array
hidden boolean
moderator_actions array
uuid string
View JSON Schema on GitHub

JSON Schema

comment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Comment",
  "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"
    },
    "flags": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Flag"
      }
    },
    "hidden": {
      "type": "boolean"
    },
    "moderator_actions": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/ModeratorAction"
      }
    },
    "uuid": {
      "type": "string"
    }
  }
}