2016-12-19 2 views
2

온라인 이벤트을 설명하는 데 Event 스키마를 사용했지만 Google은 필수 속성으로 location을 요청합니다.Google을 위해 Schema.org에서 온라인 이벤트를 마크 업하는 방법은 무엇입니까?

어떤 스키마를 사용 하시겠습니까? Event 스키마를 사용한 경우 location 속성은 어떻게 설정하겠습니까?

<script type='application/ld+json'> 
{ 
    "@context": "http://www.schema.org", 
    "@type": "Event", 
    "name": "This is the event name", 
    "url": "http://example.com", 
    "performer" : { 
     "@type": "Person", 
     "name" : "Daniel G.", 
     "additionalName" : "Dani", 
     "description": "This is my description" 
    }, 
    "description": "This is the description of the event", 
    "startDate": "2017-06-03T14:38:00+02:00", 
    "endDate": "2017-06-03T15:08:00+02:00", 
    "duration": "PT30M", 
    "inLanguage": "es", 
    "image" : "http://example.com/image.jpg", 
    "offers": { 
     "@type": "Offer", 
     "price": 10, 
     "availability" : "http://schema.org/InStock", 
     "priceCurrency": "EUR", 
     "url": "http://example.com" 
    } 
} 
</script> 

답변

0

Event도 온라인 이벤트에 대한 올바른 유형을 probably¹한다 (사용 가능한 다른 적합 유형은 없음).

Google (according to their documentation)은 실제 이벤트에 대해서만 풍부한 이벤트 결과를 지원합니다.

온라인 이벤트에 대한 Google의 풍부한 결과를 얻으려면 할 수있는 일이 없습니다. 물론 마크 업을 유지할 수 있습니다 (location 속성은 생략하십시오).


¹ applicability of Event to online events e.g. consider Webinar subtype을 참조하십시오.

관련 문제