구조화 된 데이터 테스트 도구는 @types을 다른 섹션으로 구분하지 않으며 모든 @types를 하나의 기본 유형 인 Product로 배치합니다. 유형을 분리하여 각 유형을 자체 컨테이너로 유효성을 검사 할 수 있습니까?JSON-LD를 사용하여 @type을 다른 카드로 구분하는 방법은 무엇입니까?
http://imgur.com/a/MhWq2 나는이보다 더 많은 마크 업이
{
"@context": "http://schema.org",
"@type": "Product",
"name": "Product1",
"image": "http://mycompany.com/logo.png",
"color": "example",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "1",
"ratingCount": "0",
"worstRating": "1",
"bestRating": "5"
},
"brand": {
"@type": "Organization",
"name": "Company1",
"logo": "http://mycompany.com/logo.png"
}
(나는 3 그림과 비슷한에 첫번째 사진에서 가고 싶은, 오류/경고를 용서하십시오),하지만 난이 충분히 보여줍니다 생각 내가 성취하려고하는 것. 감사!
왜 이것을 원하십니까? – unor