0
여러 조직의 웹 사이트에 대해 Schema.org를 마크 업하려고합니다. 하지만 여전히 다음과 같이 단일 조직 마크 업에만 적용됩니다.JSON-LD의 여러 조직 Schema.org 마크 업
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"memberOf": {
"@type": "",
"name": "",
"jobTitle": ""
},
"address": {
"@type": "PostalAddress",
"streetAddress": "",
"addressLocality": "",
"addressRegion": "",
"postalCode": "",
"areaserved":"",
"addressCountry":""
},
"email": "",
"name": "",
"telephone": ""
}
</script>
위 형식을 사용하여 여러 조직을 마크 업하는 방법은 무엇입니까?
[JSON-LD Schema.org : 여러 개의 비디오/이미지 페이지]의 사용 가능한 복제 각 아이 링크 (http://stackoverflow.com/questions/30505796/json-ld-schema-org- 다중 비디오 이미지 페이지) – unor