Google Indexing · Schema

Google Indexing URL Notification

A URL notification for the Google Indexing API to request crawling or removal.

CrawlingGoogleIndexingSearchSEOURLs

Properties

Name Type Description
url string The URL to notify Google about.
type string The type of notification.
notifyTime string The time of the notification.
View JSON Schema on GitHub

JSON Schema

UrlNotification.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "UrlNotification.json",
  "title": "Google Indexing URL Notification",
  "description": "A URL notification for the Google Indexing API to request crawling or removal.",
  "type": "object",
  "required": ["url", "type"],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL to notify Google about."
    },
    "type": {
      "type": "string",
      "description": "The type of notification.",
      "enum": [
        "URL_UPDATED",
        "URL_DELETED"
      ]
    },
    "notifyTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time of the notification."
    }
  }
}