Openverse · Schema
AudioSet
An audio set, rendered as a part of the ``AudioSerializer`` output.
ImagesAudioCreative CommonsOpen MediaSearchOpen DataCultural HeritageMuseums
Properties
| Name | Type | Description |
|---|---|---|
| title | string | The name of the media. |
| foreign_landing_url | string | The landing page of the work. |
| creator | string | The name of the media creator. |
| creator_url | string | A direct link to the media creator. |
| url | string | The actual URL to the media file. |
| filesize | integer | Number in bytes, e.g. 1024. |
| filetype | string | The type of the file, related to the file extension. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.openverse.org/v1/schema/AudioSet",
"title": "AudioSet",
"type": "object",
"description": "An audio set, rendered as a part of the ``AudioSerializer`` output.",
"properties": {
"title": {
"type": "string",
"nullable": true,
"description": "The name of the media."
},
"foreign_landing_url": {
"type": "string",
"nullable": true,
"description": "The landing page of the work."
},
"creator": {
"type": "string",
"nullable": true,
"description": "The name of the media creator."
},
"creator_url": {
"type": "string",
"nullable": true,
"description": "A direct link to the media creator.",
"maxLength": 2000
},
"url": {
"type": "string",
"nullable": true,
"description": "The actual URL to the media file.",
"maxLength": 1000
},
"filesize": {
"type": "integer",
"maximum": 2147483647,
"minimum": -2147483648,
"nullable": true,
"description": "Number in bytes, e.g. 1024."
},
"filetype": {
"type": "string",
"nullable": true,
"description": "The type of the file, related to the file extension.",
"maxLength": 80
}
}
}