Ci-dessous, les différences entre deux révisions de la page.
site:enseignement:master:mlbda:tmes:couchbase:schema-product [30/12/2020 16:04] amine créée |
site:enseignement:master:mlbda:tmes:couchbase:schema-product [30/12/2020 16:24] (Version actuelle) amine |
||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
====== Schéma de product ====== | ====== Schéma de product ====== | ||
+ | <code json> | ||
+ | { | ||
+ | "categories": [ | ||
+ | String | ||
+ | ], | ||
+ | "color": String, | ||
+ | "dateAdded": String, | ||
+ | "dateModified": String, | ||
+ | "description": String, | ||
+ | "imageURL": String, | ||
+ | "name": String, | ||
+ | "productId": String, | ||
+ | "reviewList": [ | ||
+ | String + | ||
+ | ], | ||
+ | "type": String, | ||
+ | "unitPrice": Number | ||
+ | } | ||
+ | </code> | ||
+ | |||
+ | Exemple d'un objet : | ||
+ | <code json> | ||
+ | { | ||
+ | "categories": [ | ||
+ | "Luggage" | ||
+ | ], | ||
+ | "color": "grey", | ||
+ | "dateAdded": "2014-02-05T15:52:18Z", | ||
+ | "dateModified": "2014-05-06T15:52:18Z", | ||
+ | "description": "This product is available on <a target=\"_blank\" href=\"http://www.amazon.com/gp/product/B003VTZ6LA/ref=s9_hps_bw_g198_ir01?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-5&pf_rd_r=D182EDFE2F434403B401&pf_rd_t=101&pf_rd_p=1486061902&pf_rd_i=15743161\">Amazon.com</a>.", | ||
+ | "imageURL": "http://ecx.images-amazon.com/images/I/41i6-Jg3D8L._SL300_.jpg", | ||
+ | "name": "Briggs & Riley 17 Inch Executive Expandable Rolling Briefcase", | ||
+ | "productId": "product0", | ||
+ | "reviewList": [ | ||
+ | "review660", | ||
+ | "review1332", | ||
+ | "review1575", | ||
+ | "review2054", | ||
+ | "review2566", | ||
+ | "review2752", | ||
+ | "review4974", | ||
+ | "review5566", | ||
+ | "review6550", | ||
+ | "review7926", | ||
+ | "review8226", | ||
+ | "review8786" | ||
+ | ], | ||
+ | "type": "product", | ||
+ | "unitPrice": 367.2 | ||
+ | } | ||
+ | </code> |