-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonld.json
83 lines (83 loc) · 2.63 KB
/
jsonld.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://dragdropdo.com/#website",
"url": "https://dragdropdo.com/",
"name": "DragDropDo",
"description": "Compress and resize PDFs and images easily",
"publisher": { "@id": "https://dragdropdo.com/#organization" }
},
{
"@type": "WebPage",
"@id": "https://dragdropdo.com//#webpage",
"url": "https://dragdropdo.com//",
"name": "How We Work - DragDropDo",
"isPartOf": { "@id": "https://dragdropdo.com/#website" },
"description": "Learn about our compression and resizing process for PDFs and images"
},
{
"@type": "SoftwareApplication",
"name": "DragDropDo",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "All",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"description": "Compress and resize PDFs and images easily",
"url": "https://dragdropdo.com/",
"softwareVersion": "1.0",
"screenshot": [""],
"featureList": [
"PDF compression",
"Image compression",
"PDF resizing",
"Image resizing",
"Drag-and-drop interface",
"Batch processing"
],
"author": {
"@type": "Organization",
"name": "DragDropDo Inc.",
"url": "https://dragdropdo.com/about"
},
"datePublished": "2023-01-01",
"requirements": "Modern web browser with JavaScript enabled",
"fileFormat": ["PDF", "JPG", "PNG", "GIF"],
"supportingData": "PDF documents and image files",
"interactionStatistic": [
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/DownloadAction",
"userInteractionCount": "100000"
},
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/UseAction",
"userInteractionCount": "500000"
},
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/LikeAction",
"userInteractionCount": "50000"
},
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/ShareAction",
"userInteractionCount": "10000"
},
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/PageVisits",
"userInteractionCount": "1000"
}
],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"ratingCount": "1000",
"bestRating": "5",
"worstRating": "1"
}
}
]
}