┌──────────────────────────────────────┐ │JsonRoot │ ├──────────────────────────────────────┤ │+stores : Store[] │ │+productCategories : ProductCategory[]│ │+products : Product[] │ │+offers : Offer[] │ └──────────────────────────────────────┘ ┌──────────────────────┐ │Offer │ ├──────────────────────┤ │+guid : String │ │+product: Product │ │+store : Store │ │+price : Number │ │+lastUpdate : DateTime│ └──────────────────────┘ ┌──────────────────────────────────┐ ┌─────────────────┐ │Product │ │Store │ ├──────────────────────────────────┤ ├─────────────────┤ │+guid : String │ │+guid : String │ │+ean : Integer │ │+name : String │ │+name : String │ │+address : String│ │+description: String │ │+zip : String │ │+added : DateTime │ │+city: String │ │+productCategory : ProductCategory│ └─────────────────┘ └──────────────────────────────────┘ ┌───────────────┐ │ProductCategory│ ├───────────────┤ │+guid : String │ │+name : String │ └───────────────┘