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

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

# Warnings

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Kroger Ad Platform API
  version: "1"
servers:
  - url: /v1
components:
  schemas:
    UpstreamValidationWarning:
      properties:
        detail:
          anyOf:
            - items:
                type: string
              type: array
            - type: "null"
          title: detail
          description: Details about the validation warnings.
        path:
          anyOf:
            - type: string
            - type: "null"
          title: path
          description: JSON path to the field with a validation warning.
      type: object
      title: UpstreamValidationWarning
    Warnings:
      properties:
        validation:
          anyOf:
            - items:
                $ref: "#/components/schemas/UpstreamValidationWarning"
              type: array
            - type: "null"
          title: validation
          description: List of validation warnings.
      type: object
      title: Warnings
```
