# Audit Google Merchant Shoe Listings

**Use case:** 

Audit shoe catalog rows for missing Google Merchant fields, normalized size and color attributes, policy issues, and evidence-backed structured titles.

## Input

```json
{
  "products": [
    {
      "id": "shoe-101",
      "title": "AeroRun Mesh Trainer Black Mens 42",
      "description": "Lightweight black mesh running trainer for men.",
      "brand": "AeroRun",
      "attributes": {
        "size": "42",
        "color": "black",
        "gender": "male",
        "condition": "new"
      }
    },
    {
      "id": "shoe-102",
      "title": "NorthPeak Trail Shoe Blue UK 9",
      "description": "Blue waterproof trail running shoe with rubber outsole.",
      "brand": "NorthPeak",
      "attributes": {
        "size": "9",
        "size_system": "UK",
        "color": "blue",
        "condition": "new"
      }
    }
  ],
  "target": "google_merchant",
  "concurrency": 2
}
```

## Output

```json
{
  "inputId": {
    "label": "Product ID",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "qualityScore": {
    "label": "Quality",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "object"
  },
  "normalizedAttributes": {
    "label": "Attributes",
    "format": "object"
  },
  "missingAttributes": {
    "label": "Missing",
    "format": "array"
  },
  "violations": {
    "label": "Violations",
    "format": "array"
  },
  "suggestedStructuredTitle": {
    "label": "Suggested title",
    "format": "object"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "processedAt": {
    "label": "Processed",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Merchant Feed Audit API](https://apify.com/webdata_labs/feedfix-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdata_labs/feedfix-api) to learn more, explore other use cases, and run it yourself.