2016-11-01 1 views

답변

1

JSON-LD는 동일한 값에 대해 여러 속성을 허용하지 않는다고 생각합니다.

하지만 그 대신 데이터를 반복 ...

"employee": { 
    "@type": "Person", 
    "name": "John Doe" 
}, 
"founder": { 
    "@type": "Person", 
    "name": "John Doe" 
} 

... 당신이 Person 한 번만 정의 할 수 있습니다, employeefounder 가치로에게 URI 및 참조이 URI를 제공합니다 :

"@type": "Person", 
"@id": "/team/john-doe#i", 
"name": "John Doe" 
"employee": {"@id": "/team/john-doe#i"}, 
"founder": {"@id": "/team/john-doe#i"} 

(details and a complete example with @id)

관련 문제