# Validate a Google Merchant Product Feed

**Use case:** 

Check a realistic ecommerce feed for invalid prices, URLs, availability, missing attributes, and repair-ready Google Merchant issues.

## Input

```json
{
  "products": [
    {
      "id": "runner-42-black",
      "title": "Example Men's Black Running Shoes - Size 42",
      "description": "Lightweight black running shoes with a breathable mesh upper and rubber sole.",
      "link": "https://example.com/products/runner-42-black",
      "image_link": "https://example.com/images/runner-42-black.jpg",
      "availability": "in_stock",
      "price": "79.99 USD",
      "brand": "Example",
      "gtin": "4006381333931",
      "condition": "new",
      "item_group_id": "runner-black",
      "color": "Black",
      "size": "42"
    },
    {
      "sku": "broken-item",
      "name": "SALE BUY NOW 50% OFF",
      "url": "not-a-url",
      "image": "missing-scheme.example/image.jpg",
      "stock_status": "maybe",
      "price": "price on request"
    }
  ],
  "profile": "google_merchant_2026",
  "maxProducts": 500,
  "fieldMap": {},
  "includeNormalizedProduct": true,
  "includeOriginalProduct": false
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "qualityScore": {
    "label": "Quality",
    "format": "number"
  },
  "grade": {
    "label": "Grade",
    "format": "string"
  },
  "issueCount": {
    "label": "Issues",
    "format": "integer"
  },
  "criticalCount": {
    "label": "Critical",
    "format": "integer"
  },
  "errorCount": {
    "label": "Errors",
    "format": "integer"
  },
  "warningCount": {
    "label": "Warnings",
    "format": "integer"
  },
  "issueCodes": {
    "label": "Issue codes",
    "format": "array"
  },
  "repairSuggestions": {
    "label": "Repairs",
    "format": "array"
  },
  "normalizedProduct": {
    "label": "Normalized",
    "format": "object"
  },
  "validatedAt": {
    "label": "Validated",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Product Feed Validator](https://apify.com/gifted_wagon/product-feed-validator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/gifted_wagon/product-feed-validator) to learn more, explore other use cases, and run it yourself.