1 개요[ | ]
- JSON-LD (JSON for Linking Data)
- JSON을 사용하여 링크드 데이터를 인코딩하는 방식
json
Copy
{
"@context": "https://json-ld.org/contexts/person.jsonld",
"@id": "http://dbpedia.org/resource/John_Lennon",
"name": "John Lennon",
"born": "1940-10-09",
"spouse": "http://dbpedia.org/resource/Cynthia_Lennon"
}
json
Copy
{
"@context": {
"name": "http://xmlns.com/foaf/0.1/name",
"homepage": {
"@id": "http://xmlns.com/foaf/0.1/workplaceHomepage",
"@type": "@id"
},
"Person": "http://xmlns.com/foaf/0.1/Person"
},
"@id": "https://me.example.com",
"@type": "Person",
"name": "John Smith",
"homepage": "https://www.example.com/"
}
2 같이 보기[ | ]
- JSON
- 하이퍼텍스트 애플리케이션 언어(Hypertext Application Language)
3 참고[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.