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

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

# Entity

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Kroger Ad Platform API
  version: "1"
servers:
  - url: /v1
components:
  schemas:
    Entity:
      properties:
        id:
          type: integer
          title: id
          description: Entity id
        subCommodityId:
          anyOf:
            - type: string
            - type: "null"
          title: subCommodityId
          description: Sub commodity id
        useBaseBid:
          type: boolean
          title: useBaseBid
          description: Whether to use base bid.
        bidAmount:
          anyOf:
            - type: number
            - type: "null"
          title: bidAmount
          description: Bid amount for this entity.
        deleted:
          type: boolean
          title: deleted
          description: Whether this entity is deleted.
      type: object
      required:
        - id
        - useBaseBid
        - deleted
      title: Entity
```
