Openverse · Schema

OAuth2Application

ImagesAudioCreative CommonsOpen MediaSearchOpen DataCultural HeritageMuseums

Properties

Name Type Description
client_id string The unique, public identifier of your application.
client_secret string The secret key used to authenticate your application.
name string The name of your application or project.
msg string Some additional information about the application.
View JSON Schema on GitHub

JSON Schema

oauth2application.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.openverse.org/v1/schema/OAuth2Application",
  "title": "OAuth2Application",
  "type": "object",
  "properties": {
    "client_id": {
      "type": "string",
      "description": "The unique, public identifier of your application."
    },
    "client_secret": {
      "type": "string",
      "description": "The secret key used to authenticate your application."
    },
    "name": {
      "type": "string",
      "description": "The name of your application or project."
    },
    "msg": {
      "type": "string",
      "description": "Some additional information about the application."
    }
  },
  "required": [
    "client_id",
    "client_secret",
    "msg",
    "name"
  ]
}