# Audit Recipe Schema and Freshness Signals

**Use case:** 

Audit recipe pages for missing Recipe schema fields, stale update dates, and conflicts between sitemap, schema, and visible content.

## Input

```json
{
  "sitemapUrls": [
    "https://cookieandkate.com/post-sitemap.xml"
  ],
  "urls": [],
  "maxPages": 25,
  "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"
  },
  "issueCodes": {
    "label": "Issue codes",
    "format": "array"
  },
  "issues": {
    "label": "Issues",
    "format": "array"
  },
  "request.fetchError": {
    "label": "Fetch error",
    "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.