Slide 89
Slide 89 text
(超おまけ)JSONの解析のスキーマ
{
"type": "array",
"items": {
"type": "object",
"properties": {
"@@odata.type": {
"type": "string"
},
"@@odata.id": {
"type": "string"
},
"@@odata.etag": {
"type": "string"
},
"@@odata.editLink": {
"type": "string"
},
"name": {
"type": "string"
},
"workflowid@odata.type": {
"type": "string"
},
"workflowid": {
"type": "string"
},
"uiflowtype@OData.Community.Display.V1.FormattedValue": {
"type": "string"
},
"uiflowtype": {
"type": "integer"
},
"createdby@odata.associationLink": {
"type": "string"
},
"createdby@odata.navigationLink": {
"type": "string"
},
"createdby": {
"type": "object",
"properties": {
"@@odata.type": {
"type": "string"
},
"@@odata.id": {
"type": "string"
},
"@@odata.editLink": {
"type": "string"
},
"systemuserid@odata.type": {
"type": "string"
},
"systemuserid": {
"type": "string"
},
"ownerid@odata.type": {
"type": "string"
},
"ownerid": {
"type": "string"
}
}
}
},
"required": [
"@@odata.type",
"@@odata.id",
"@@odata.etag",
"@@odata.editLink",
"name",
"workflowid@odata.type",
"workflowid",
"uiflowtype@OData.Community.Display.V1.FormattedValue",
"uiflowtype",
"createdby@odata.associationLink",
"createdby@odata.navigationLink",
"createdby"
]
}
}
89