有没有办法强制单个对象到数组?每次测试对象类型真的很烦人。
我试过这个上下文,但它不起作用。还有example in JSON-LD Playground。使用此上下文,资源将转换为单个对象,而不是包含一个对象的数组,如您所料。
{
"@context": {
"member": {
"@id": "http://xmlns.com/foaf/0.1/member",
"@container": "@list"
},
"ex": "http://example.org/ex#",
"foaf": "http://xmlns.com/foaf/0.1/",
"owl": "http://www.w3.org/2002/07/owl#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"frapo": "http://purl.org/cerif/frapo/"
},
"@type": "foaf:Organisation",
"member": []
}
结果:
... {
"@id": "ex:Organization_1",
"@type": "foaf:Organisation",
"foaf:member": {
"@id": "ex:Person_1",
"@type": "foaf:Person",
"foaf:name": "Bill"
}
} ...
应该是什么:
"foaf:member": [{ "@id": ... }]
答案 0 :(得分:3)
兼容的JSON-LD处理器允许您在处理JSON-LD时设置几个选项:http://www.w3.org/TR/json-ld-api/#the-jsonldoptions-type
只需将compactArrays
标记设置为false
。
答案 1 :(得分:0)
使用"@container": "@set"
代替@list
。
@list
表示订单 - 而@set
则不然。 JFYI,由于您的输入与@list
不匹配,因此压缩数据时可能无法(通过算法)选择“成员”术语。如果您的数据与上下文中的术语不匹配,则会使用匹配的替代术语(或完整的URL)。简而言之,请改用@set
。