This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

JsonLdBreadcrumbList Pennington.StructuredData

schema.org BreadcrumbList describing a page's place in the navigation tree.

Properties

Items IReadOnlyList<JsonLdBreadcrumbItem>
required
Ordered crumb items.
Type string
schema.org type literal (e.g. "Article", "Recipe").

Pennington.StructuredData.JsonLdBreadcrumbList

namespace Pennington.StructuredData;

/// schema.org BreadcrumbList describing a page's place in the navigation tree.
public record JsonLdBreadcrumbList
{
    /// Ordered crumb items.
    
public IReadOnlyList<JsonLdBreadcrumbItem> Items { get; set; }
/// schema.org type literal (e.g. "Article", "Recipe").
public string Type { get; }
}