Schema:Company: Difference between revisions
Appearance
Importing NeoWiki demo data |
Update schema via NeoWiki UI |
||
| (10 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
"propertyDefinitions": { | "propertyDefinitions": { | ||
"Founded at": { | "Founded at": { | ||
"type": "number" | "type": "number", | ||
"description": "", | |||
"required": false | |||
}, | }, | ||
"Websites": { | "Websites": { | ||
"type": "url", | "type": "url", | ||
"multiple": true | "description": "", | ||
"required": false, | |||
"multiple": true, | |||
"uniqueItems": true | |||
}, | }, | ||
"Main product": { | "Main product": { | ||
"type": "relation", | "type": "relation", | ||
"description": "", | |||
"required": false, | |||
"relation": "Has main product", | "relation": "Has main product", | ||
"targetSchema": "Product" | "targetSchema": "Product", | ||
"multiple": false, | |||
"uniqueItems": true | |||
}, | }, | ||
"Products": { | "Products": { | ||
"type": "relation", | "type": "relation", | ||
"description": "", | |||
"required": false, | |||
"relation": "Has product", | "relation": "Has product", | ||
"targetSchema": "Product", | "targetSchema": "Product", | ||
"multiple": true | "multiple": true, | ||
"uniqueItems": true | |||
}, | |||
"Status": { | |||
"type": "select", | |||
"description": "", | |||
"required": true, | |||
"options": [ | |||
{ | |||
"id": "o1demo1aaaaaaa1", | |||
"label": "Active" | |||
}, | |||
{ | |||
"id": "o1demo1aaaaaaa2", | |||
"label": "Inactive" | |||
}, | |||
{ | |||
"id": "o1demo1aaaaaaa3", | |||
"label": "Acquired" | |||
}, | |||
{ | |||
"id": "o1demo1aaaaaaa4", | |||
"label": "Dissolved" | |||
} | |||
], | |||
"multiple": false | |||
}, | }, | ||
"World domination progress": { | "World domination progress": { | ||
"type": "number", | "type": "number", | ||
" | "description": "", | ||
"required": false | |||
}, | |||
"Brand Color": { | |||
"type": "color", | |||
"description": "", | |||
"required": false, | |||
"allowedColors": [] | |||
}, | |||
"Another Color": { | |||
"type": "color", | |||
"description": "", | |||
"required": false, | |||
"allowedColors": [ | |||
"#ff0000", | |||
"" | |||
] | |||
} | } | ||
} | } | ||
} | } | ||