Philadelphia Inquirer Sitemap URL

A single URL entry in an Inquirer.com XML sitemap.

NewsNews MediaNewspaperJournalismPhiladelphiaPennsylvaniaLocal NewsRSSSitemapArc PublishingMCP

Properties

Name Type Description
loc string
lastmod string
changefreq string
priority number
image object
View JSON Schema on GitHub

JSON Schema

sitemap-url-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/philadelphia-inquirer/main/json-schema/sitemap-url-schema.json",
  "title": "Philadelphia Inquirer Sitemap URL",
  "description": "A single URL entry in an Inquirer.com XML sitemap.",
  "type": "object",
  "properties": {
    "loc": {
      "type": "string",
      "format": "uri"
    },
    "lastmod": {
      "type": "string",
      "format": "date-time"
    },
    "changefreq": {
      "type": "string",
      "enum": ["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]
    },
    "priority": {
      "type": "number",
      "minimum": 0,
      "maximum": 1
    },
    "image": {
      "type": "object",
      "properties": {
        "loc": { "type": "string", "format": "uri" },
        "caption": { "type": "string" }
      }
    }
  },
  "required": ["loc"]
}