--- title: SitemapResourceInterface - Storefront API description: Represents the common fields for all sitemap resource types. api_version: 2026-04 api_name: storefront type: interface api_type: graphql source_url: html: >- https://shopify.dev/docs/api/storefront/latest/interfaces/SitemapResourceInterface md: >- https://shopify.dev/docs/api/storefront/latest/interfaces/SitemapResourceInterface.md --- # Sitemap​Resource​Interface interface Represents the common fields for all sitemap resource types. ## Fields * handle [String!](https://shopify.dev/docs/api/storefront/latest/scalars/String) non-null Resource's handle. * updated​At [Date​Time!](https://shopify.dev/docs/api/storefront/latest/scalars/DateTime) non-null The date and time when the resource was updated. *** ##### Variables ```json { "handle": "", "updatedAt": "" } ``` ##### Schema ```graphql interface SitemapResourceInterface { handle: String! updatedAt: DateTime! } ```