-
Notifications
You must be signed in to change notification settings - Fork 9
/
BreadcrumbList.schema.json
13 lines (13 loc) · 1.12 KB
/
BreadcrumbList.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:BreadcrumbList",
"title": "BreadcrumbList",
"description": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\\n\\nThe [[position]] property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an [[itemListOrder]] of [[ItemListOrderAscending]] (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.\n ",
"type": "object",
"allOf": [
{
"description": "A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.",
"$ref": "schema:ItemList"
}
]
}