Slide 52
Slide 52 text
【解説】データモデルの構造(3/3)
52
データ流通実証実験資料(さくら・NEC)より引⽤
11 © NEC Corporation 2019
コンテキスト・データのJSON表現例
id : P-9073-K
type : Car
name : speed
type: Number
value : 112
name : accuracy
type: Number
value : 5
name : timestamp
type: DateTime
value : 2017……
Entity
Attributes
Metadata
Metadata
※NGSIv1のJSON表現
{
"id": "P-9073-K",
"type": "Car",
"speed": {
"type": "Number",
"value": 112,
"metadata": {
"accuracy": {
"type": "Number",
"value": 5
},
"timestamp":{
"type": "DateTime",
"value": "2017-10-
14T07:21:24.238Z"
}
}
}
}