В JSON API мне нужно представлять коллекцию первичных данных, где первичные объекты данных имеют отношение «многие» к себе.JSON Api как представлять отношения «многие» в объектах в первичных данных
ie.
account1 -> canTransferTo (relationship) -account3
account2 -> canTransferTo (relationship) -account1, account3
account3 -> canTransferTo (relationship) -account1
Как это сделать, чтобы я следил за спецификациями API JSO. Может ли это быть так ниже?
{
"data": [{
"type": "accounts",
"id": "1",
"attributes": {
"name": "account1"
},
"relationships": {
"canTransferTo": {
"links": {
"self": "http://example.com/accounts/1/relationships/canTransferTo",
"related": "http://example.com/accounts/1/canTransferTo"
},
"data": {
"type": "accounts",
"id": "3"
}
}
},
"links": {
"self": "http://example.com/accounts/1"
}
}, {
"type": "accounts",
"id": "2",
"attributes": {
"name": "account2"
},
"relationships": {
"canTransferTo": {
"links": {
"self": "http://example.com/accounts/2/relationships/canTransferTo",
"related": "http://example.com/accounts/2/canTransferTo"
},
"data": [{
"type": "accounts",
"id": "1"
}, {
"type": "accounts",
"id": "3"
}]
}
},
"links": {
"self": "http://example.com/accounts/2"
}
}, {
"type": "accounts",
"id": "3",
"attributes": {
"name": "account3"
},
"relationships": {
"canTransferTo": {
"links": {
"self": "http://example.com/accounts/3/relationships/canTransferTo",
"related": "http://example.com/accounts/3/canTransferTo"
},
"data": {
"type": "accounts",
"id": "1"
}
}
},
"links": {
"self": "http://example.com/accounts/3"
}
}]
}
ооо! Спасибо большое! это полезно – inforeqd
Рад помочь! p.s .: принять мой ответ, если он помог решить вашу проблему;) – Pavol