javascript

Flexible UI Component - Bloomberg - Asset Management AIM - Full Stack - 12/6/21

// Start typing here

customers, not predefined properties 
properties displayed - for their customers 
all text based properties 
all properties are displayed the same way 
support different retailers - generic data store 

API to save the properties 
GET
update v. create v. PUT replacement
DELETE
security: Authorization Headers

merchant 
type of merchandise 

{
    retailer_id: 343,
    
    properties: [
        {
            itemType: id, 
            properties: {}
        }
    ]
        "type": { // id of type 
            "key": "value",
            "": {
            }
        }
    }
} 

// data storage 
merchants table (id, name)
itemTypes (id, name)
properties table (itemType - id, key, value)
Was this helpful?