---
title: "Target"
url: "https://api-catalog-test.8451.com/apis/kroger-ad-platform-api-1/versions/161b884e-bbcf-458e-9b78-9eff02a00217/schemas/Target"
---

> Full API specification: https://api-catalog-test.8451.com/apis/kroger-ad-platform-api-1/versions/161b884e-bbcf-458e-9b78-9eff02a00217.md

# Target

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Kroger Ad Platform API
  version: "1"
servers:
  - url: /v1
components:
  schemas:
    Target:
      properties:
        type:
          anyOf:
            - type: string
            - type: integer
          title: type
          description: Type id of the adgroup target. 1 - Placement, 2 - Division, 3 - Day
            Parting
        id:
          anyOf:
            - type: integer
            - type: "null"
          title: id
          description: Id to use for the adgroup target. For placement targets, this
            should be the placement id. For division targets, this should be
            division id.
        values:
          anyOf:
            - items:
                type: integer
              type: array
            - type: "null"
          title: values
          description: Values to use for the adgroup target. For day parting targets, this
            should be a list of two values, which are start and end hours (1 -
            24) in the EST timezone.
      type: object
      required:
        - type
      title: Target
```
