MediaMath · Schema

error response

Programmatic AdvertisingDSPDemand-Side PlatformCampaign ManagementAd TechBiddingAudience SegmentsCreative ManagementReportingAnalytics

Properties

Name Type Description
errors array
meta object
View JSON Schema on GitHub

JSON Schema

campaigns-error_response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "error response",
  "type": "object",
  "required": [
    "errors",
    "meta"
  ],
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string"
          },
          "field": {
            "description": "Optional when it is a schema error",
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    },
    "meta": {
      "type": "object",
      "required": [
        "status"
      ],
      "properties": {
        "status": {
          "type": "string"
        }
      }
    }
  }
}