-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-2.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathexample-2.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"@context": {
"name": "https://schema.org/name",
"author": "https://schema.org/author",
"datePublished": "https://schema.org/datePublished",
"view": "https://example.com/contexts/view",
"isActive": "https://example.com/definitions/isActive",
"some-other-class": "https://example.com/definitions/some-other-class",
"attr": "https://example.com/definitions/attr"
},
"@type": "Article",
"name": {
"value": "Introduction to RVST",
"view": {
"name": "https://example.com/views/customNameView",
"class": {
"isActive": true,
"some-other-class": false
},
"attr": {
"style": "font-weight: bold;"
}
}
},
"author": "https://example.com/authors/JohnDoe",
"datePublished": "2024-04-15",
"view": {
"name": "https://example.com/views/articleDetailView",
"class": {
"isActive": true,
"some-other-class": false
},
"attr": {
"src": "https://cdn.example.com/some-image.png",
"style": "background-color: #fff;"
}
}
}