Openverse · Schema

ImageReportRequest

ImagesAudioCreative CommonsOpen MediaSearchOpen DataCultural HeritageMuseums

Properties

Name Type Description
identifier string Our unique identifier for an open-licensed work.
reason object The reason to report media to Openverse. * `mature` - mature * `dmca` - dmca * `other` - other
description string The explanation on why media is being reported.
View JSON Schema on GitHub

JSON Schema

imagereportrequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.openverse.org/v1/schema/ImageReportRequest",
  "title": "ImageReportRequest",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "format": "uuid",
      "description": "Our unique identifier for an open-licensed work."
    },
    "reason": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReasonEnum"
        }
      ],
      "description": "The reason to report media to Openverse.\n\n* `mature` - mature\n* `dmca` - dmca\n* `other` - other"
    },
    "description": {
      "type": "string",
      "nullable": true,
      "description": "The explanation on why media is being reported.",
      "maxLength": 500
    }
  },
  "required": [
    "identifier",
    "reason"
  ]
}