Skip to content

Instantly share code, notes, and snippets.

@mamund
Created September 4, 2014 20:37
Show Gist options
  • Save mamund/c84a867d100f021ea861 to your computer and use it in GitHub Desktop.
Save mamund/c84a867d100f021ea861 to your computer and use it in GitHub Desktop.
OData puzzlers
// dealing with comments related to multiple entities
{
"comment" : {
"id" : "...",
"dateCreated" : "...",
"authorId" : "...",
"commentText" : "...",
"associations" : [
{"id" : "...", "type" : "problem"},
{"id" : "...", "type" : "incident"},
{"id" : "...", "type" : "resolutionReport"}
]
}
}
// dealing with comments related to multiple entities
{
"comment" : {
"id" : "...",
"dateCreated" : "...",
"authorId" : "...",
"commentText" : "...",
"associations" : [
{"id" : "...", "type" : "problem"},
{"id" : "...", "type" : "incident"},
{"id" : "...", "type" : "resolutionReport"}
],
"extendedProperties" : [
{"type" : "nvp", "name" : "nickname", "value" : "..."},
{"type" : "mapCoord", "name" : "map1", "coord" : {"lat" : "...", "long" : "..."}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment