iNaturalist · Schema

Flag

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology

Properties

Name Type Description
id integer
flag string
comment string
resolved boolean
user object
created_at string
View JSON Schema on GitHub

JSON Schema

flag.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Flag",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "flag": {
      "type": "string"
    },
    "comment": {
      "type": "string"
    },
    "resolved": {
      "type": "boolean"
    },
    "user": {
      "$ref": "#/definitions/User"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}