Openverse · Schema
Source
ImagesAudioCreative CommonsOpen MediaSearchOpen DataCultural HeritageMuseums
Properties
| Name | Type | Description |
|---|---|---|
| source_name | string | The source of the media, e.g. flickr |
| display_name | string | The name of content source, e.g. Flickr |
| source_url | string | The URL of the source, e.g. https://www.flickr.com |
| logo_url | string | The URL to a logo for the source. |
| media_count | integer | The number of media items indexed from the source. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.openverse.org/v1/schema/Source",
"title": "Source",
"type": "object",
"properties": {
"source_name": {
"type": "string",
"description": "The source of the media, e.g. flickr"
},
"display_name": {
"type": "string",
"description": "The name of content source, e.g. Flickr"
},
"source_url": {
"type": "string",
"format": "uri",
"description": "The URL of the source, e.g. https://www.flickr.com"
},
"logo_url": {
"type": "string",
"nullable": true,
"readOnly": true,
"description": "The URL to a logo for the source.",
"deprecated": true
},
"media_count": {
"type": "integer",
"readOnly": true,
"description": "The number of media items indexed from the source."
}
},
"required": [
"display_name",
"logo_url",
"media_count",
"source_name",
"source_url"
]
}