Unified.to · Schema

AdSchedule

IntegrationsUnified API

Properties

Name Type Description
bid_modifier number
day_of_week string
end_hour number
end_minute number
start_hour number
start_minute number
View JSON Schema on GitHub

JSON Schema

unified-to-adschedule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdSchedule",
  "title": "AdSchedule",
  "properties": {
    "bid_modifier": {
      "type": "number"
    },
    "day_of_week": {
      "enum": [
        "MONDAY",
        "TUESDAY",
        "WEDNESDAY",
        "THURSDAY",
        "FRIDAY",
        "SATURDAY",
        "SUNDAY"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "end_hour": {
      "type": "number"
    },
    "end_minute": {
      "type": "number"
    },
    "start_hour": {
      "type": "number"
    },
    "start_minute": {
      "type": "number"
    }
  },
  "required": [
    "day_of_week",
    "start_hour",
    "end_hour"
  ],
  "type": "object"
}