Jump to content

Schema:Company: Difference between revisions

From NeoWiki
Created page with "{ "description": "Company in the NeoWiki example set", "propertyDefinitions": { "Founded at": { "type": "number", "minimum": 1800, "maximum": 2100 }, "Website": { "type": "url" }, "CEO": { "type": "relation", "relation": "Has CEO", "targetSchema": "Person" }, "Products": { "type": "relation", "relation": "Makes product", "targetSchema": "Product", "multiple": true } } }"
 
NeoWiki (talk | contribs)
Importing NeoWiki demo data
 
Line 1: Line 1:
{
{
"description": "Company in the NeoWiki example set",
"propertyDefinitions": {
"propertyDefinitions": {
"Founded at": {
"Founded at": {
"type": "number",
"type": "number"
"minimum": 1800,
"maximum": 2100
},
},
"Website": {
"Websites": {
"type": "url"
"type": "url",
"multiple": true
},
},
"CEO": {
"Main product": {
"type": "relation",
"type": "relation",
"relation": "Has CEO",
"relation": "Has main product",
"targetSchema": "Person"
"targetSchema": "Product"
},
},
"Products": {
"Products": {
"type": "relation",
"type": "relation",
"relation": "Makes product",
"relation": "Has product",
"targetSchema": "Product",
"targetSchema": "Product",
"multiple": true
"multiple": true
},
"World domination progress": {
"type": "number",
"default": 0
}
}
}
}
}
}

Latest revision as of 05:14, 26 February 2026