|
| 1 | +<!-- Organization Schema - Full Details --> |
| 2 | +<script type="application/ld+json"> |
| 3 | +{ |
| 4 | + "@context": "https://schema.org", |
| 5 | + "@type": "Organization", |
| 6 | + "name": "{{ site.company.name }}", |
| 7 | + "legalName": "{{ site.company.name }}, Inc.", |
| 8 | + "url": "{{ site.url }}", |
| 9 | + "logo": "{{ '/assets/ethoslink-logo.svg' | absolute_url }}", |
| 10 | + "description": "{{ site.description | strip_html }}", |
| 11 | + "email": "{{ site.email }}", |
| 12 | + "foundingDate": "2024", |
| 13 | + "founder": { |
| 14 | + "@type": "Person", |
| 15 | + "@id": "{{ site.url }}#founder" |
| 16 | + }, |
| 17 | + "address": { |
| 18 | + "@type": "PostalAddress", |
| 19 | + "addressCountry": "US" |
| 20 | + }, |
| 21 | + "sameAs": [ |
| 22 | + "https://github.com/{{ site.github_username }}", |
| 23 | + "https://www.linkedin.com/company/ethos-link", |
| 24 | + "https://twitter.com/{{ site.twitter_username }}" |
| 25 | + ], |
| 26 | + "contactPoint": { |
| 27 | + "@type": "ContactPoint", |
| 28 | + "contactType": "Customer Service", |
| 29 | + "email": "{{ site.email }}", |
| 30 | + "availableLanguage": ["English", "Portuguese", "Spanish", "Italian"] |
| 31 | + }, |
| 32 | + "areaServed": { |
| 33 | + "@type": "Place", |
| 34 | + "name": "Worldwide" |
| 35 | + }, |
| 36 | + "knowsAbout": [ |
| 37 | + "Artificial Intelligence", |
| 38 | + "Customer Experience Management", |
| 39 | + "Reputation Management", |
| 40 | + "Hospitality Technology", |
| 41 | + "Review Analytics", |
| 42 | + "Natural Language Processing" |
| 43 | + ], |
| 44 | + "makesOffer": [ |
| 45 | + { |
| 46 | + "@type": "Offer", |
| 47 | + "itemOffered": { |
| 48 | + "@type": "SoftwareApplication", |
| 49 | + "@id": "{{ site.url }}#reviato" |
| 50 | + } |
| 51 | + } |
| 52 | + ] |
| 53 | +} |
| 54 | +</script> |
0 commit comments