--- title: SitemapResourceInterface - Storefront API description: Represents the common fields for all sitemap resource types. api_version: 2025-10 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. *** ## Types implemented in * [Sitemap​Resource](https://shopify.dev/docs/api/storefront/latest/objects/SitemapResource) OBJECT Represents a sitemap resource that is not a metaobject. * handle [String!](https://shopify.dev/docs/api/storefront/latest/scalars/String) non-null Resource's handle. * image [Sitemap​Image](https://shopify.dev/docs/api/storefront/latest/objects/SitemapImage) Resource's image. * title [String](https://shopify.dev/docs/api/storefront/latest/scalars/String) Resource's title. * updated​At [Date​Time!](https://shopify.dev/docs/api/storefront/latest/scalars/DateTime) non-null The date and time when the resource was updated. * [Sitemap​Resource​Metaobject](https://shopify.dev/docs/api/storefront/latest/objects/SitemapResourceMetaobject) OBJECT A SitemapResourceMetaobject represents a metaobject with [the `renderable` capability](https://shopify.dev/docs/apps/build/custom-data/metaobjects/use-metaobject-capabilities#render-metaobjects-as-web-pages). * handle [String!](https://shopify.dev/docs/api/storefront/latest/scalars/String) non-null Resource's handle. * online​Store​Url​Handle [String](https://shopify.dev/docs/api/storefront/latest/scalars/String) The URL handle for accessing pages of this metaobject type in the Online Store. * type [String!](https://shopify.dev/docs/api/storefront/latest/scalars/String) non-null The type of the metaobject. Defines the namespace of its associated metafields. * 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! } ```