{ "$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" ] }