# Audit Shopify Product Sitemap Freshness

**Use case:** 

Check Shopify product pages for stale sitemap dates, Product schema gaps, and freshness conflicts before they hurt organic search visibility.

## Input

```json
{
  "sitemapUrls": [
    "https://www.allbirds.com/sitemap_products_1.xml?from=1878194389061&to=7369944137808"
  ],
  "urls": [
    "https://example.com/blog/post"
  ],
  "maxPages": 100,
  "maxConcurrency": 2,
  "requestDelayMs": 500,
  "requestTimeoutSecs": 20,
  "respectRobotsTxt": true,
  "includeSeoBasics": true,
  "includeSchemaValidation": true,
  "includeRawDateCandidates": false,
  "dateMismatchToleranceDays": 3,
  "userAgent": "Sitemap Freshness & Schema Integrity Auditor (+https://apify.com/)"
}
```

## Output

```json
{
  "url": {
    "label": "Input URL",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "freshness.score": {
    "label": "Score",
    "format": "number"
  },
  "freshness.scoreLabel": {
    "label": "Score label",
    "format": "text"
  },
  "schema.primaryType": {
    "label": "Schema type",
    "format": "text"
  },
  "dates.bestKnownUpdateDate": {
    "label": "Best update",
    "format": "date"
  },
  "dates.daysSinceBestKnownUpdate": {
    "label": "Age days",
    "format": "number"
  },
  "issueCodes": {
    "label": "Issue codes",
    "format": "array"
  },
  "request.httpStatus": {
    "label": "HTTP",
    "format": "number"
  },
  "source.type": {
    "label": "Source",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Sitemap Freshness & Schema Integrity Auditor](https://apify.com/sebastian-actors/sitemap-freshness-schema-integrity-auditor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sebastian-actors/sitemap-freshness-schema-integrity-auditor) to learn more, explore other use cases, and run it yourself.