FIWARE チュートリアル・スキーマ:Product
Product - ストアで販売されている物
プロパティ | 期待されるタイプ | 説明 |
---|---|---|
Product のプロパティ | ||
name
|
Property: text | 製品の名前 |
price
|
Property: number | 製品の価格 |
size
|
Property: text | T シャツのサイズ設定における製品のサイズ (S , M , L , XL etc.)
|
currency
|
Property: text | 製品の価格設定に使用される通貨 |
@context
と @graph
のスニペットは、以下にあります (詳細を見るためにスクロールしてください):
{
"@context": {
"tutorial": "https://fiware.github.io/tutorials.Step-by-Step/schema/",
"Product": "tutorial:Product",
"currency": {
"@id": "tutorial:currency",
"@type": "xsd:string"
},
"price": {
"@id": "tutorial:price",
"@type": "xsd:decimal"
},
"size": {
"@id": "tutorial:size",
"@type": "xsd:string"
}
},
"@graph": [
{
"@id": "tutorial:Product",
"@type": "rdfs:Class",
"rdfs:comment": "製品はストアで販売されている物",
"rdfs:label": "製品",
"rdfs:subClassOf": {
"@id": "http://schema.org/Thing"
}
}
]
}