iNaturalist · Schema

Sound

BiodiversityNatureCitizen ScienceWildlifeObservationsTaxaEcology

Properties

Name Type Description
id integer
attribution string
license_code string
file_url string
file_content_type string
flags array
hidden boolean
moderator_actions array
View JSON Schema on GitHub

JSON Schema

sound.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Sound",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "attribution": {
      "type": "string"
    },
    "license_code": {
      "type": "string"
    },
    "file_url": {
      "type": "string"
    },
    "file_content_type": {
      "type": "string"
    },
    "flags": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Flag"
      }
    },
    "hidden": {
      "type": "boolean"
    },
    "moderator_actions": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/ModeratorAction"
      }
    }
  }
}