Basis · Schema

Brands Get

Successful Response

Programmatic AdvertisingDSPMedia BuyingCampaign ManagementAudience TargetingAdTech

Properties

Name Type Description
metadata object
data array
View JSON Schema on GitHub

JSON Schema

brands-get.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Brands Get",
  "description": "Successful Response",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "properties": {
        "cursor": {
          "type": [
            "null",
            "string"
          ],
          "description": "Use this cursor value in your next call to this endpoint to return the next set of items"
        },
        "page_size": {
          "type": "integer"
        },
        "total": {
          "type": "integer"
        }
      }
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Identifies a single brand."
          },
          "name": {
            "type": "string",
            "description": "The name of the brand."
          },
          "created_at": {
            "type": "string"
          },
          "verticals": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Identifies a single vertical."
                },
                "name": {
                  "type": "string",
                  "description": "The name of the vertical."
                },
                "created_at": {
                  "type": "string",
                  "description": "The date and time the vertical was added."
                },
                "subverticals": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string",
                        "description": "Identifies a single sub-vertical."
                      },
                      "name": {
                        "type": "string",
                        "description": "The name of the sub-vertical."
                      },
                      "created_at": {
                        "type": "string",
                        "description": "The date and time the sub-vertical was added."
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}