Skip to content

Commit

Permalink
✨ Add microdata schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovi committed Mar 22, 2022
1 parent 59019dc commit 2a77f78
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,63 @@
<title>
DummyJSON - Fake REST API of JSON data for development and prototyping
</title>

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "GET Products",
"item": "https://dummyjson.com/products"
},
{
"@type": "ListItem",
"position": 2,
"name": "POST/PUT Products",
"item": "https://dummyjson.com/products"
},
{
"@type": "ListItem",
"position": 3,
"name": "GET Users",
"item": "https://dummyjson.com/users"
},
{
"@type": "ListItem",
"position": 4,
"name": "POST/PUT Users",
"item": "https://dummyjson.com/users"
},
{
"@type": "ListItem",
"position": 5,
"name": "GET Posts",
"item": "https://dummyjson.com/posts"
},
{
"@type": "ListItem",
"position": 6,
"name": "POST/PUT Posts",
"item": "https://dummyjson.com/posts"
},
{
"@type": "ListItem",
"position": 7,
"name": "GET Todos",
"item": "https://dummyjson.com/todos"
},
{
"@type": "ListItem",
"position": 8,
"name": "POST/PUT Todos",
"item": "https://dummyjson.com/todos"
}
]
}
</script>
</head>

<body>
Expand Down

0 comments on commit 2a77f78

Please sign in to comment.