FIWARE Banner


FIWARE チュートリアル・スキーマ:Store

Store - 物を販売する建物

プロパティ期待されるタイプ説明
Store のプロパティ
furniture Relationship: Shelf ストアで見つかった棚ユニットのリスト
verified Property: boolean ストアの住所が確認されたかどうか
FIWARE Building のプロパティ
address Property: address ストアの住所
name Property: text ストアの名前
location GeoProperty: geo:json ストアの場所
category Property: category 建物のカテゴリ

@context@graph のスニペットは、以下にあります (詳細を見るためにスクロールしてください):

  
{
  "@context": {

    "fiware": "https://uri.fiware.org/ns/data-models#",
    "tutorial": "https://fiware.github.io/tutorials.Step-by-Step/schema/",
    
    "Building": "fiware:Building",
    "Product": "tutorial:Product",

    "address": "schema:address",
    "category": "fiware:category",
    "furniture": {
      "@id": "tutorial:furniture",   
      "@type": "@id"
    },
    "verified": {
      "@id": "tutorial:verified",
      "@type": "xsd:boolean"
    }
  },
  "@graph": [
    {
      "@id": "tutorial:furniture",
      "@type": "https://uri.etsi.org/ngsi-ld/Relationship",
      "schema:domainIncludes": [
        {
          "@id": "fiware:Building"
        }
      ],
      "schema:rangeIncludes": [
        {
          "@id": "tutorial:Shelf"
        }
      ],
      "rdfs:comment": "建物内で見つかったユニット",
      "rdfs:label": "家具"
    }
  ]
}