-
Notifications
You must be signed in to change notification settings - Fork 1
/
JSON-LD_ProfessionalService
62 lines (62 loc) · 1.54 KB
/
JSON-LD_ProfessionalService
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
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "ProfessionalService",
"name": "<txp:site_name />",
"address": {
"@type": "PostalAddress",
"addressCountry": "XXX",
"addressLocality": "XXX",
"addressRegion": "XXX",
"postalCode":"XXXXX",
"streetAddress": "XXX"
},
"url": "<txp:site_url />",
"description": "<txp:site_slogan />",
"founder": "XXX",
"email" : "mailto:recipient@example.com",
"telephone": "+33-XXX-XXX-XXXX",
"image": {
"@type": "ImageObject",
"url": "<txp:site_url />img/logo.png",
"height": 60,
"width": 60
},
"currenciesAccepted": "€",
"priceRange": "€€€€",
"paymentAccepted": "Cash, Credit Card, Bank Transfer",
"sameAs": [
"//twitter.com/XXX",
"//github.com/XXX",
"//plus.google.com/XXX",
"//www.instagram.com/XXX",
"//ello.co/XXX"
],
"makesOffer" : {
"@type" : "Offer",
"itemOffered" : [
{
"@type" : "Product",
"name" : "Web Development"
},
{
"@type" : "Product",
"name" : "Textpattern CMS Specialist"
},
{
"@type" : "Product",
"name" : "Search Engines Optimisation"
},
{
"@type" : "Product",
"name" : "Front Optimizer Specialist"
}
]
},
"potentialAction": {
"@type": "SearchAction",
"target": "<txp:site_url />?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>