2015-10-31 2 views
-1
<script type="application/ld+json"> 
{ "@context" : "http://schema.org", 
    "@type" : "Organization", 
    "url" : "http://www.hstechsupport.com", 
    "contactPoint" : 
    [ { "@type" : "ContactPoint", 
     "telephone" : "+1-866-606-2003", 
     "contactType" : "Computer Technical Support", 
     "contactOption" : "TollFree", 
    "areaServed" : "US", 
     "availableLanguage" : "English" 
     } 

     { "@type" : "ContactPoint", 
     "telephone" : "+1-866-606-2003", 
     "contactType" : "Computer Customer Service", 
     "contactOption" : "TollFree", 
     "areaServed" : "US", 
     "availableLanguage" : "English" 
     } 

     { "@type" : "ContactPoint", 
     "telephone" : "+1-866-606-2003", 
     "contactType" : "Computer Customer Support Service", 
     "contactOption" : "TollFree", 
     "areaServed" : "US", 
     "availableLanguage" : "English" 
     } ] 

    } 
</script> 

Посмотри мой код и вытащите меня оттуда. Помоги мнеПроизошла ошибка в разборе вашего JSON-LD

+0

Пожалуйста, измените выход –

ответ

0

Ваши данные JSON должны быть:

{ "@context" : "http://schema.org", "@type" : "Organization", "url" : "http://www.hstechsupport.com", "contactPoint" : [ 
{ "@type" : "ContactPoint", "telephone" : "+1-866-606-2003", "contactType" : "Computer Technical Support", "contactOption" : "TollFree", "areaServed" : "US", "availableLanguage" : "English" } 
,{ "@type" : "ContactPoint", "telephone" : "+1-866-606-2003", "contactType" : "Computer Customer Service", "contactOption" : "TollFree", "areaServed" : "US", "availableLanguage" : "English" }, { "@type" : "ContactPoint", "telephone" : "+1-866-606-2003", "contactType" : "Computer Customer Support Service", "contactOption" : "TollFree", "areaServed" : "US", "availableLanguage" : "English" } ] } 

вам не хватает ,.

вы можете чёрта здесь: http://json.parser.online.fr/