{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.openverse.org/v1/schema/AudioReportRequest", "title": "AudioReportRequest", "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" ] }