Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WmxSitemap

import type { WmxSitemap } from "https://googleapis.deno.dev/v1/searchconsole:v1.ts";

Contains detailed information about a specific URL submitted as a sitemap.

interface WmxSitemap {
contents?: WmxSitemapContent[];
errors?: bigint;
isPending?: boolean;
isSitemapsIndex?: boolean;
lastDownloaded?: Date;
lastSubmitted?: Date;
path?: string;
type?:
| "NOT_SITEMAP"
| "URL_LIST"
| "SITEMAP"
| "RSS_FEED"
| "ATOM_FEED"
| "PATTERN_SITEMAP"
| "OCEANFRONT";
warnings?: bigint;
}

§Properties

§

The various content types in the sitemap.

§
errors?: bigint
[src]

Number of errors in the sitemap. These are issues with the sitemap itself that need to be fixed before it can be processed correctly.

§
isPending?: boolean
[src]

If true, the sitemap has not been processed.

§
isSitemapsIndex?: boolean
[src]

If true, the sitemap is a collection of sitemaps.

§
lastDownloaded?: Date
[src]

Date & time in which this sitemap was last downloaded. Date format is in RFC 3339 format (yyyy-mm-dd).

§
lastSubmitted?: Date
[src]

Date & time in which this sitemap was submitted. Date format is in RFC 3339 format (yyyy-mm-dd).

§
path?: string
[src]

The url of the sitemap.

§
type?: "NOT_SITEMAP" | "URL_LIST" | "SITEMAP" | "RSS_FEED" | "ATOM_FEED" | "PATTERN_SITEMAP" | "OCEANFRONT"
[src]

The type of the sitemap. For example: rssFeed.

§
warnings?: bigint
[src]

Number of warnings for the sitemap. These are generally non-critical issues with URLs in the sitemaps.