Last active
June 20, 2017 23:44
-
-
Save inetbiz/2f57d5e75234f5f0b47a494dd69cc838 to your computer and use it in GitHub Desktop.
JSON+LD Organization Schema with extensive data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "http://schema.org", | |
"@type": "Organization", | |
"@id": "#publisher", | |
"@reverse": | |
{ | |
"publisher": | |
{ | |
"@type":"Website", | |
"potentialAction": | |
{ | |
"@type":"SearchAction", | |
"target":"https://www.strikehawk.com/?s={search_term_string}", | |
"query-input":"required name=search_term_string"} | |
} | |
}, | |
"sameAs":["https://www.facebook.com/strikehawk","https://www.linkedin.com/company/1130536","https://plus.google.com/+StrikehawkeComm","https://www.youtube.com/user/strikehawkecomm","https://twitter.com/strikehawkecomm"], | |
"logo":{ | |
"@type":"ImageObject", | |
"url":"https://www.strikehawk.com/wp-content/uploads/2016/08/apple-touch-icon-144x144.png", | |
"width":"250", | |
"height":"250" | |
}, | |
"name":"StrikeHawk eCommerce, Inc.", | |
"alternateName":"StrikeHawk eCommerce", | |
"url": "https://www.strikehawk.com/", | |
"legalName": "StrikeHawk eCommerce, Inc.", | |
"foundingDate": "April 28, 2009", | |
"foundingLocation": [ | |
{ | |
"@type": "Place", | |
"address": { | |
"@type": "PostalAddress", | |
"addressLocality": "Destin", | |
"addressRegion": "FL" | |
} | |
}], | |
"isicV4": "6311", | |
"naics": "518210", | |
"founders": [ | |
{ | |
"@type": "Person", | |
"@id": "#Denver", | |
"name": "Denver Prophit Jr.", | |
"worksFor": {"@id": "#publisher"}, | |
"jobTitle": "President", | |
"image": "https://www.strikehawk.com/wp-content/uploads/2016/06/adobe-profile-denver-prophit.png", | |
"colleague": {"@id": "#David"}, | |
"sameAs":["https://plus.google.com/u/0/+DenverProphitJr", "https://www.linkedin.com/in/denverprophit", "https://twitter.com/DenverProphitJr"] | |
}, | |
{ | |
"@type": "Person", | |
"@id": "#David", | |
"name": "David M. Graham", | |
"worksFor": {"@id": "#publisher"}, | |
"jobTitle": "Secretary, Treasurer", | |
"image": "https://www.strikehawk.com/wp-content/uploads/2016/07/david-graham.jpg", | |
"colleague": {"@id": "#Denver"}, | |
"sameAs": "https://plus.google.com/u/0/105614808642892153918" | |
} ], | |
"address": { | |
"@type": "PostalAddress", | |
"streetAddress": "P.O. BOX 0595", | |
"addressLocality": "New Smyrna Beach", | |
"addressRegion": "FL", | |
"postalCode": "32170-0595", | |
"addressCountry": "USA" | |
}, | |
"contactPoint": [{ | |
"@type": "ContactPoint", | |
"telephone": "+1-321-236-0483", | |
"contactType": "customer support", | |
"areaServed": ["US", "CA", "GB"], | |
"availableLanguage": "English" | |
}], | |
"makesOffer": | |
{ | |
"@type":"Offer", | |
"businessFunction":"http://purl.org/goodrelations/v1#ProvideService", | |
"itemOffered": | |
{ | |
"@type":["Service","http://www.productontology.org/id/Web_hosting_service"] | |
}, | |
"name": "StrikeHawk eCommerce, Inc.", | |
"url": "https://www.strikehawk.com" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment