<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://neowiki.knowledge.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=NeoWiki</id>
	<title>NeoWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://neowiki.knowledge.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=NeoWiki"/>
	<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php/Special:Contributions/NeoWiki"/>
	<updated>2026-05-23T10:22:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Knowledge_Wiki_Forever&amp;diff=71</id>
		<title>Knowledge Wiki Forever</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Knowledge_Wiki_Forever&amp;diff=71"/>
		<updated>2026-05-12T12:00:00Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Add feature showcase page for updated NeoWiki&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page collects working examples of features available in the updated NeoWiki installation on this wiki.&lt;br /&gt;
&lt;br /&gt;
== Subject rendering with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#view}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
The updated NeoWiki can render a Subject directly on a page.&lt;br /&gt;
&lt;br /&gt;
Source:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;{{#view:s1demo1aaaaaaa1}}&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&lt;br /&gt;
{{#view:s1demo1aaaaaaa1}}&lt;br /&gt;
&lt;br /&gt;
== Read values inline with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#neowiki_value}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
This parser function lets wikitext read structured data without writing Lua or Cypher.&lt;br /&gt;
&lt;br /&gt;
Source:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;Founded year: {{#neowiki_value:Founded at|page=ACME Inc}}&lt;br /&gt;
Products: {{#neowiki_value:Products|page=ACME Inc|separator=, }}&lt;br /&gt;
Museum visitors: {{#neowiki_value:Annual visitors|page=Rijksmuseum}}&lt;br /&gt;
Website: {{#neowiki_value:Websites|page=ACME Inc}}&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&lt;br /&gt;
* Founded year: {{#neowiki_value:Founded at|page=ACME Inc}}&lt;br /&gt;
* Products: {{#neowiki_value:Products|page=ACME Inc|separator=, }}&lt;br /&gt;
* Museum visitors: {{#neowiki_value:Annual visitors|page=Rijksmuseum}}&lt;br /&gt;
* Website: {{#neowiki_value:Websites|page=ACME Inc}}&lt;br /&gt;
&lt;br /&gt;
== Run read-only Cypher with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#cypher_raw}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
The updated NeoWiki keeps the raw Cypher parser function for debugging and exploration.&lt;br /&gt;
&lt;br /&gt;
Source:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;{{#cypher_raw:MATCH (m:Museum) RETURN m.name AS name, m.`Annual visitors` AS visitors ORDER BY visitors DESC LIMIT 5}}&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Result:&lt;br /&gt;
&lt;br /&gt;
{{#cypher_raw:MATCH (m:Museum) RETURN m.name AS name, m.`Annual visitors` AS visitors ORDER BY visitors DESC LIMIT 5}}&lt;br /&gt;
&lt;br /&gt;
== Special pages and page-level subject management ==&lt;br /&gt;
&lt;br /&gt;
The newer UI adds or improves dedicated management surfaces.&lt;br /&gt;
&lt;br /&gt;
* [[Special:Schemas]] for schema administration&lt;br /&gt;
* [[Special:Layouts]] for layout administration&lt;br /&gt;
* [{{fullurl:ACME Inc|action=subjects}} ACME Inc data tab] for page-level subject management&lt;br /&gt;
&lt;br /&gt;
== Lua API via &amp;lt;code&amp;gt;mw.neowiki&amp;lt;/code&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
The newer Lua API is one of the biggest additions. It exposes structured data directly to Scribunto modules.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;local nw = require( &#039;mw.neowiki&#039; )&lt;br /&gt;
&lt;br /&gt;
local founded = nw.getValue( &#039;Founded at&#039;, { page = &#039;ACME Inc&#039; } )&lt;br /&gt;
local products = nw.getAll( &#039;Products&#039;, { page = &#039;ACME Inc&#039; } )&lt;br /&gt;
local subject = nw.getMainSubject( &#039;ACME Inc&#039; )&lt;br /&gt;
local sameSubject = nw.getSubject( &#039;s1demo1aaaaaaa1&#039; )&lt;br /&gt;
local children = nw.getChildSubjects( &#039;ACME Inc&#039; )&lt;br /&gt;
local schema = nw.getSchema( &#039;Company&#039; )&lt;br /&gt;
local museums = nw.query(&lt;br /&gt;
    &#039;MATCH (m:Museum) RETURN m.name AS name, m.`Annual visitors` AS visitors ORDER BY visitors DESC LIMIT 3&#039;&lt;br /&gt;
)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Functions now documented and available in the updated extension include:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;getValue&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;getAll&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;getMainSubject&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;getSubject&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;getChildSubjects&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;getSchema&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;query&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== REST API examples ==&lt;br /&gt;
&lt;br /&gt;
NeoWiki now has a documented REST surface under &amp;lt;code&amp;gt;/neowiki/v0/*&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;GET /rest.php/neowiki/v0/subject/s1demo1aaaaaaa1&lt;br /&gt;
GET /rest.php/neowiki/v0/schema/Company&lt;br /&gt;
GET /rest.php/neowiki/v0/layout/{layoutName}&lt;br /&gt;
GET /rest.php/neowiki/v0/layouts&lt;br /&gt;
GET /rest.php/neowiki/v0/page/{pageId}/subjects&lt;br /&gt;
PUT /rest.php/neowiki/v0/subject/{subjectId}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want the generated OpenAPI spec exposed on this wiki, enable it in &amp;lt;code&amp;gt;LocalSettings.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;$wgRestAPIAdditionalRouteFiles[] = &#039;includes/Rest/specs.v0.json&#039;;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Newer property-type support ==&lt;br /&gt;
&lt;br /&gt;
The updated NeoWiki adds stronger support for &amp;lt;code&amp;gt;select&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;dateTime&amp;lt;/code&amp;gt; property types, including better validation and editing behavior.&lt;br /&gt;
&lt;br /&gt;
Example schema snippets:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;{&lt;br /&gt;
  &amp;quot;name&amp;quot;: &amp;quot;Status&amp;quot;,&lt;br /&gt;
  &amp;quot;type&amp;quot;: &amp;quot;select&amp;quot;,&lt;br /&gt;
  &amp;quot;options&amp;quot;: [&lt;br /&gt;
    { &amp;quot;id&amp;quot;: &amp;quot;active&amp;quot;, &amp;quot;label&amp;quot;: &amp;quot;Active&amp;quot; },&lt;br /&gt;
    { &amp;quot;id&amp;quot;: &amp;quot;paused&amp;quot;, &amp;quot;label&amp;quot;: &amp;quot;Paused&amp;quot; }&lt;br /&gt;
  ]&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;{&lt;br /&gt;
  &amp;quot;name&amp;quot;: &amp;quot;Launch time&amp;quot;,&lt;br /&gt;
  &amp;quot;type&amp;quot;: &amp;quot;dateTime&amp;quot;,&lt;br /&gt;
  &amp;quot;required&amp;quot;: true&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Layouts and multiple presentations ==&lt;br /&gt;
&lt;br /&gt;
Layouts now have a more complete editing and management workflow. The key entry point is [[Special:Layouts]].&lt;br /&gt;
&lt;br /&gt;
The idea is that one Subject can be shown in multiple ways depending on context, while the underlying structured data remains the same.&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
This page is intentionally a compact feature showcase for the newer NeoWiki build now running on this wiki.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Company_Infoboxes&amp;diff=64</id>
		<title>Company Infoboxes</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Company_Infoboxes&amp;diff=64"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo1aaaaaaa1&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo5sssssss1&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page shows infoboxes with data from the [[Professional Wiki]] and [[ACME Inc]] pages.&lt;br /&gt;
&lt;br /&gt;
This is achieved with the following wikitext that references the IDs of the subjects:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo1aaaaaaa1&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo5sssssss1&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This syntax is temporary and will change as we move out of the proof-of-concept phase.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Reactive_UI_example&amp;diff=63</id>
		<title>Reactive UI example</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Reactive_UI_example&amp;diff=63"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page shows Subjects defined on [[ACME Inc]].&lt;br /&gt;
&lt;br /&gt;
Data is displayed multiple times in different forms, demonstrating automatic and immediate update everywhere once you edit it in one location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo1aaaaaaa1&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo1aaaaaaa4&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo1aaaaaaa3&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo1aaaaaaa2&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;s1demo1aaaaaaa1&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
## Placeholder Text&lt;br /&gt;
&lt;br /&gt;
How to explain? How to describe? Even the omniscient viewpoint quails.&lt;br /&gt;
&lt;br /&gt;
A singleton star, reddish and dim. A ragtag of asteroids, and a single planet, more like a moon. In this era the star hung near the galactic plane, just beyond the Beyond. The structures on the surface were gone from normal view, pulverized into regolith across a span of aeons. The treasure was far underground, beneath a network of passages, in a single room filled with black. Information at the quantum density, undamaged. Maybe five billion years had passed since the archive was lost to the nets.&lt;br /&gt;
&lt;br /&gt;
The curse of the mummy&#039;s tomb, a comic image from mankind&#039;s own prehistory, lost before time. They had laughed when they said it, laughed with joy at the treasure . . . and determined to be cautious just the same. They would live here a year or five, the little company from Straum, the archaeologist programmers, their families and schools. A year or five would be enough to handmake the protocols, to skim the top and identify the treasure&#039;s origin in time and space, to learn a secret or two that would make Straumli Realm rich. And when they were done, they would sell the location; perhaps build a network link (but chancier that—this was beyond the Beyond; who knew what Power might grab what they&#039;d found).&lt;br /&gt;
&lt;br /&gt;
So now there was a tiny settlement on the surface, and they called it the High Lab. It was really just humans playing with an old library. It should be safe, using their own automation, clean and benign. This library wasn&#039;t a living creature, or even possessed of automation (which here might mean something more, far more, than human). They would look and pick and choose, and be careful not to be burned. . . . Humans starting fires and playing with the flames.&lt;br /&gt;
&lt;br /&gt;
The archive informed the automation. Data structures were built, recipes followed. A local network was built, faster than anything on Straum, but surely safe. Nodes were added, modified by other recipes. The archive was a friendly place, with hierarchies of translation keys that led them along. Straum itself would be famous for this.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Cypher&amp;diff=62</id>
		<title>Cypher</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Cypher&amp;diff=62"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page demonstrates the &amp;lt;code&amp;gt;cypher_raw&amp;lt;/code&amp;gt; parser function for executing Cypher queries against the Neo4j graph database.&lt;br /&gt;
&lt;br /&gt;
This is a &#039;&#039;&#039;demo feature&#039;&#039;&#039; for the NeoWiki proof of concept demo. It will not be present as-is in a production version.&lt;br /&gt;
&lt;br /&gt;
== Query Companies ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cypher&amp;quot;&amp;gt;&lt;br /&gt;
MATCH (n:Company) RETURN n.name, n.id&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#cypher_raw: MATCH (n:Company) RETURN n.name, n.id}}&lt;br /&gt;
&lt;br /&gt;
== Query Products ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cypher&amp;quot;&amp;gt;&lt;br /&gt;
MATCH (n:Product) RETURN n.name, n.id&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#cypher_raw: MATCH (n:Product) RETURN n.name, n.id}}&lt;br /&gt;
&lt;br /&gt;
== Query Relations ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cypher&amp;quot;&amp;gt;&lt;br /&gt;
MATCH (source:Company)-[r]-&amp;gt;(target)&lt;br /&gt;
RETURN source.name, type(r), target.name&lt;br /&gt;
LIMIT 10&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#cypher_raw: MATCH (source:Company)-[r]-&amp;gt;(target) RETURN source.name, type(r), target.name LIMIT 10}}&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
* Only read-only queries are allowed. Write operations like &amp;lt;code&amp;gt;CREATE&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;SET&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;DELETE&amp;lt;/code&amp;gt; are rejected.&lt;br /&gt;
* Query results are displayed as formatted JSON.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Museum_Collection&amp;diff=61</id>
		<title>Museum Collection</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Museum_Collection&amp;diff=61"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page shows infoboxes with data from various museum and artwork pages, demonstrating cross-page subject display.&lt;br /&gt;
&lt;br /&gt;
== Museums ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;sEpfwJLnx3Kze3t&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;sEpfwJLnxyQy6vR&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;sEpfwJLnyuR5E4i&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;sEpfwJLnzqsDMs5&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Selected Artworks ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;sEpfwJLo6Si6kJo&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;sEpfwJLo8KqKsUP&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;ext-neowiki-view&amp;quot; data-subject-id=&amp;quot;sEpfwJLoABDZ18D&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Main_Page&amp;diff=60</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Main_Page&amp;diff=60"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;max-width:1200px; font-size: 1.15rem&amp;quot;&amp;gt;&lt;br /&gt;
Welcome to the NeoWiki demo wiki!&lt;br /&gt;
&lt;br /&gt;
NeoWiki turns your wiki into a collaborative graph database by letting you store and query structured information.&lt;br /&gt;
Information is stored in versioned document form inside of wiki pages. The latest version is also stored in&lt;br /&gt;
graph databases via which it can be queried.&lt;br /&gt;
&lt;br /&gt;
NeoWiki is in the experimental proof of concept phase. It is not production ready, public interfaces will change,&lt;br /&gt;
big structural changes will happen, and key functionality is still missing.&lt;br /&gt;
&lt;br /&gt;
This demo exists to gather feedback to inform further development. ([https://professional.wiki/en/contact Contact Professional Wiki])&lt;br /&gt;
&lt;br /&gt;
You can find [https://github.com/ProfessionalWiki/NeoWiki/tree/master/docs technical documentation] in the&lt;br /&gt;
[https://github.com/ProfessionalWiki/NeoWiki NeoWiki git repository].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Discover NeoWiki Step by Step ==&lt;br /&gt;
&lt;br /&gt;
Terminology is explained in [https://github.com/ProfessionalWiki/NeoWiki/blob/master/docs/Glossary.md the glossary].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As a reader:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* View a Subject: [[Professional Wiki]]&lt;br /&gt;
* View a Schema: [[Schema:Company]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As an editor:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Edit a Subject: [[Professional Wiki]] (login required)&lt;br /&gt;
* Edit a Schema: either via a Subject using it, i.e. [[Professional Wiki]], or directly on the Schema page, i.e. [[Schema:Company]]&lt;br /&gt;
* Create a Subject: Create a new page with any content and click &amp;quot;Create subject&amp;quot;. That button is there just for the PoC.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As a developer:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* View Subject JSON: [[Special:NeoJson/ACME_Inc]] (developer UI, normal users will not see JSON. [https://github.com/ProfessionalWiki/NeoWiki/blob/master/docs/SubjectFormat.md View docs])&lt;br /&gt;
* Query the graph database: [[Cypher|Cypher raw example]]&lt;br /&gt;
* [[#REST_API_endpoints|Explore the REST API]]&lt;br /&gt;
&lt;br /&gt;
== European Museums ==&lt;br /&gt;
&lt;br /&gt;
A dataset of European museums, artists, and artworks showcasing cross-schema relations and rich property types.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Museums:&#039;&#039;&#039; [[Musee dOrsay|Musée d&#039;Orsay]], [[Rijksmuseum]], [[Kunsthistorisches Museum]], [[Museo del Prado]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Artists:&#039;&#039;&#039; [[Claude Monet]], [[Vincent van Gogh]], [[Johannes Vermeer]], [[Diego Velazquez|Diego Velázquez]], [[Gustav Klimt]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Artworks:&#039;&#039;&#039; [[Water Lilies]], [[Starry Night Over the Rhone|Starry Night Over the Rhône]], [[The Milkmaid]], [[Las Meninas]], [[The Kiss]], [[The Art of Painting]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Exhibitions:&#039;&#039;&#039; [[Impressionist Masters]], [[Dutch Golden Age Highlights]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Cities:&#039;&#039;&#039; [[Paris]], [[Amsterdam]], [[Vienna]], [[Madrid]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Overview:&#039;&#039;&#039; [[Museum Collection]]&lt;br /&gt;
&lt;br /&gt;
== Other Demo Pages ==&lt;br /&gt;
&lt;br /&gt;
* Simple page with automatic infobox and edit form: [[NeoWiki]], [[ProWiki]]&lt;br /&gt;
* Subject with relations: [[Professional Wiki]]&lt;br /&gt;
* Multiple subjects per page: [[ACME Inc]]&lt;br /&gt;
* Wikibase Statement emulation: [[Berlin]]&lt;br /&gt;
* Displaying data from other pages: [[Company Infoboxes]]&lt;br /&gt;
* [[Reactive UI example]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Schemas&#039;&#039;&#039; allow you to define the structure of your data. For instance, you can define that a Employee has a&lt;br /&gt;
compensation in EUR with a value between 0 and 1000000.&lt;br /&gt;
&lt;br /&gt;
* [[Schema:Company]]&lt;br /&gt;
* [[Schema:Product]]&lt;br /&gt;
* [[Schema:Employee]]&lt;br /&gt;
* [[Schema:Museum]]&lt;br /&gt;
* [[Schema:Artist]]&lt;br /&gt;
* [[Schema:Artwork]]&lt;br /&gt;
* [[Schema:Exhibition]]&lt;br /&gt;
* [[Schema:Attendance]]&lt;br /&gt;
* [[Special:Schemas|View all schemas]]&lt;br /&gt;
&lt;br /&gt;
== REST API Endpoints ==&lt;br /&gt;
&lt;br /&gt;
We will have OpenAPI docs later. For now, you can find a complete and up-to-date list by looking at the&lt;br /&gt;
[https://github.com/ProfessionalWiki/NeoWiki/blob/master/extension.json MediaWiki API route definitions].&lt;br /&gt;
Search for &amp;quot;RestRoutes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Example URL: https://neowiki.dev/w/rest.php/neowiki/v0/subject/s1demo4sssssss1&lt;br /&gt;
&lt;br /&gt;
=== Read Endpoints ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;GET /neowiki/v0/subject/{subjectId}&amp;lt;/code&amp;gt; Gets the JSON definition of a subject&lt;br /&gt;
* &amp;lt;code&amp;gt;GET /neowiki/v0/schema/{schemaName}&amp;lt;/code&amp;gt; Gets the JSON definition of a schema&lt;br /&gt;
&lt;br /&gt;
=== Write Endpoints ===&lt;br /&gt;
&lt;br /&gt;
These require a CSRF token, first obtained via &amp;lt;code&amp;gt;api.php?action=query&amp;amp;format=json&amp;amp;meta=tokens&amp;amp;type=csrf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;POST /neowiki/v0/page/{pageId}/mainSubject&amp;lt;/code&amp;gt; Creates a new main subject&lt;br /&gt;
* &amp;lt;code&amp;gt;POST /neowiki/v0/page/{pageId}/childSubjects&amp;lt;/code&amp;gt; Creates a new child subject&lt;br /&gt;
* &amp;lt;code&amp;gt;PATCH /neowiki/v0/subject/{subjectId}&amp;lt;/code&amp;gt; Updates a subject&lt;br /&gt;
* &amp;lt;code&amp;gt;DELETE /neowiki/v0/subject/{subjectId}&amp;lt;/code&amp;gt; Deletes a subject&lt;br /&gt;
&lt;br /&gt;
These endpoints are designed for the NeoWiki frontend. They are not a complete general purpose API yet.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Kunsthistorisches_Museum&amp;diff=59</id>
		<title>Kunsthistorisches Museum</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Kunsthistorisches_Museum&amp;diff=59"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=The_Art_of_Painting&amp;diff=58</id>
		<title>The Art of Painting</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=The_Art_of_Painting&amp;diff=58"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Las_Meninas&amp;diff=57</id>
		<title>Las Meninas</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Las_Meninas&amp;diff=57"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Claude_Monet&amp;diff=56</id>
		<title>Claude Monet</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Claude_Monet&amp;diff=56"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Claude Monet was a French painter and founder of Impressionist painting. He is seen as a key precursor to Modernism, especially in his later series paintings of water lilies, haystacks, and the Rouen Cathedral.&lt;br /&gt;
&lt;br /&gt;
Monet&#039;s ambition of documenting the French countryside led him to adopt a method of painting the same scene many times in order to capture the changing of light and the passing of the seasons.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Johannes_Vermeer&amp;diff=55</id>
		<title>Johannes Vermeer</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Johannes_Vermeer&amp;diff=55"/>
		<updated>2026-02-26T05:14:15Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=ProWiki&amp;diff=54</id>
		<title>ProWiki</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=ProWiki&amp;diff=54"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Awesome stuff]] [[Category:Things to try]]&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Vincent_van_Gogh&amp;diff=53</id>
		<title>Vincent van Gogh</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Vincent_van_Gogh&amp;diff=53"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=The_Kiss&amp;diff=52</id>
		<title>The Kiss</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=The_Kiss&amp;diff=52"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Museo_del_Prado&amp;diff=51</id>
		<title>Museo del Prado</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Museo_del_Prado&amp;diff=51"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Water_Lilies&amp;diff=50</id>
		<title>Water Lilies</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Water_Lilies&amp;diff=50"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Water Lilies (or Nymphéas) is a series of approximately 250 oil paintings by French Impressionist Claude Monet. The paintings depict his flower garden at his home in Giverny and were the main focus of his artistic production during the last thirty years of his life.&lt;br /&gt;
&lt;br /&gt;
This particular painting from 1906 is part of the Musée d&#039;Orsay collection and exemplifies Monet&#039;s fascination with light, color, and reflection on water.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Berlin&amp;diff=49</id>
		<title>Berlin</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Berlin&amp;diff=49"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;NeoWiki follows the Property Graph model.&lt;br /&gt;
&lt;br /&gt;
NeoWiki Subjects have NeoWiki Statements that are simple property value pairs. Unlike Wikibase Statements,&lt;br /&gt;
the data model does not force the presence of Qualifiers, References, and Rank.&lt;br /&gt;
&lt;br /&gt;
Because NeoWiki supports adding as many Subjects to a single page, it is possible to emulate Wikibase Statements.&lt;br /&gt;
You do this by adding one Subject for what would have been a Wikibase Statement. This has the additional benefit&lt;br /&gt;
that your Wikibase Statement equivalent has a Schema, which allows you to force said equivalent into a specific&lt;br /&gt;
shape. For instance, you can require that your Population records have a Date, a Measurer, and a list of References.&lt;br /&gt;
&lt;br /&gt;
We did not optimize for this use case yet. In particular, nice UIs are missing, such as showing the Population&lt;br /&gt;
data in an (editable) table.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=The_Milkmaid&amp;diff=48</id>
		<title>The Milkmaid</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=The_Milkmaid&amp;diff=48"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Starry_Night_Over_the_Rhone&amp;diff=47</id>
		<title>Starry Night Over the Rhone</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Starry_Night_Over_the_Rhone&amp;diff=47"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=ACME_Inc&amp;diff=46</id>
		<title>ACME Inc</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=ACME_Inc&amp;diff=46"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Main Subject of this page is the Company ACME Inc, shown in the infobox.&lt;br /&gt;
&lt;br /&gt;
The page also contains Child Subjects which are Products.&lt;br /&gt;
&lt;br /&gt;
TODO: show a table here, for now see the &amp;quot;View or edit JSON&amp;quot; developer UI at the bottom&lt;br /&gt;
&lt;br /&gt;
You can have as many Child Subjects on a page as you want. For instance you could also define Employees.&lt;br /&gt;
&lt;br /&gt;
TODO: show a table here, for now see the &amp;quot;View or edit JSON&amp;quot; developer UI at the bottom&lt;br /&gt;
&lt;br /&gt;
It is up to you to choose if you define products, employees and other business objects on their own pages or if you&lt;br /&gt;
define multiple subjects on a single page.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Diego_Velazquez&amp;diff=45</id>
		<title>Diego Velazquez</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Diego_Velazquez&amp;diff=45"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Impressionist_Masters&amp;diff=44</id>
		<title>Impressionist Masters</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Impressionist_Masters&amp;diff=44"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Vienna&amp;diff=43</id>
		<title>Vienna</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Vienna&amp;diff=43"/>
		<updated>2026-02-26T05:14:14Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Professional_Wiki&amp;diff=42</id>
		<title>Professional Wiki</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Professional_Wiki&amp;diff=42"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Gustav_Klimt&amp;diff=41</id>
		<title>Gustav Klimt</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Gustav_Klimt&amp;diff=41"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Musee_dOrsay&amp;diff=40</id>
		<title>Musee dOrsay</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Musee_dOrsay&amp;diff=40"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Musée d&#039;Orsay is a museum in Paris, France, on the Left Bank of the Seine. It is housed in the former Gare d&#039;Orsay, a Beaux-Arts railway station built between 1898 and 1900.&lt;br /&gt;
&lt;br /&gt;
The museum holds mainly French art dating from 1848 to 1914, including paintings, sculptures, furniture, and photography. It is home to the world&#039;s largest collection of Impressionist and Post-Impressionist masterpieces by painters including Monet, Manet, Degas, Renoir, Cézanne, Seurat, Sisley, Gauguin, and Van Gogh.&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Amsterdam&amp;diff=39</id>
		<title>Amsterdam</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Amsterdam&amp;diff=39"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Dutch_Golden_Age_Highlights&amp;diff=38</id>
		<title>Dutch Golden Age Highlights</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Dutch_Golden_Age_Highlights&amp;diff=38"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Rijksmuseum&amp;diff=37</id>
		<title>Rijksmuseum</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Rijksmuseum&amp;diff=37"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Madrid&amp;diff=36</id>
		<title>Madrid</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Madrid&amp;diff=36"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Paris&amp;diff=35</id>
		<title>Paris</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Paris&amp;diff=35"/>
		<updated>2026-02-26T05:14:13Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=NeoWiki&amp;diff=34</id>
		<title>NeoWiki</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=NeoWiki&amp;diff=34"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Attendance&amp;diff=33</id>
		<title>Schema:Attendance</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Attendance&amp;diff=33"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;Annual attendance record for a museum, used as child subjects on museum pages.&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Year&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Visitors&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 0,&lt;br /&gt;
			&amp;quot;precision&amp;quot;: 0&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Source&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Museum&amp;diff=32</id>
		<title>Schema:Museum</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Museum&amp;diff=32"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;A museum or gallery that houses and displays collections of art, artifacts, or other objects of cultural, historical, or scientific significance.&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Description&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Founded&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;City&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Located in&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;City&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Website&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Specialization&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true,&lt;br /&gt;
			&amp;quot;uniqueItems&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Annual visitors&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 0,&lt;br /&gt;
			&amp;quot;precision&amp;quot;: 0&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Admission fee&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 0,&lt;br /&gt;
			&amp;quot;maximum&amp;quot;: 200,&lt;br /&gt;
			&amp;quot;precision&amp;quot;: 2,&lt;br /&gt;
			&amp;quot;default&amp;quot;: 0&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Links&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Social media and review sites&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Artist&amp;diff=31</id>
		<title>Schema:Artist</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Artist&amp;diff=31"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;A person who creates works of art such as paintings, sculptures, or other visual media.&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Born&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Died&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Nationality&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Movement&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Wikipedia&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Active period&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Period when the artist was professionally active&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Employee&amp;diff=30</id>
		<title>Schema:Employee</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Employee&amp;diff=30"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;Someone working for a company&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;LegalName&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;WorkEmail&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;EmploymentFte&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 0,&lt;br /&gt;
			&amp;quot;maximum&amp;quot;: 100,&lt;br /&gt;
			&amp;quot;default&amp;quot;: 100&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Skills&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true,&lt;br /&gt;
			&amp;quot;uniqueItems&amp;quot;: true,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;A list of the person&#039;s skills&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Employer&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Employer&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Company&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: false&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Population&amp;diff=29</id>
		<title>Schema:Population</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Population&amp;diff=29"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;A population measurement&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Population&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Date&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Measurer&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;References&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:City&amp;diff=28</id>
		<title>Schema:City</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:City&amp;diff=28"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Country&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Population&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 0&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Website&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Artwork&amp;diff=27</id>
		<title>Schema:Artwork</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Artwork&amp;diff=27"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;A work of art such as a painting, sculpture, or other creative piece held in a museum collection.&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Year&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Year the artwork was created or completed&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Medium&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Condition&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;default&amp;quot;: &amp;quot;Good&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Creator&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Created by&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Artist&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Located at&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Held at&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Museum&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Image&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Estimated value&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 0,&lt;br /&gt;
			&amp;quot;precision&amp;quot;: 2,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Estimated value in millions EUR&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Everything&amp;diff=26</id>
		<title>Schema:Everything</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Everything&amp;diff=26"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;Everything currently almost supported, maybe.&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;string/text&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;string/text (required)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;string/text (many)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;string/text (duplicates)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true,&lt;br /&gt;
			&amp;quot;uniqueItems&amp;quot;: false&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;string/text (default)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;default&amp;quot;: &amp;quot;Default value&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;string/url&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;string/url (many)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;number/number&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;number/number (w precision)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;precision&amp;quot;: 2&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;number/number (w bounds)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 42,&lt;br /&gt;
			&amp;quot;maximum&amp;quot;: 100&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;relation/relation&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Has product&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Product&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;relation/relation (many)&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Has product&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Product&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Table&amp;diff=25</id>
		<title>Schema:Table</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Table&amp;diff=25"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Has personal data&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Part of&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Exhibition&amp;diff=24</id>
		<title>Schema:Exhibition</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Exhibition&amp;diff=24"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;A temporary or permanent exhibition hosted at a museum, showcasing works by one or more artists around a theme.&amp;quot;,&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Start year&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;End year&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Venue&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Hosted at&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Museum&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Featured artists&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Features&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Artist&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Website&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Theme&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;text&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Visitor count&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;minimum&amp;quot;: 0,&lt;br /&gt;
			&amp;quot;precision&amp;quot;: 0&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Product&amp;diff=23</id>
		<title>Schema:Product</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Product&amp;diff=23"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Available since&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;The year the product was first released&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Website&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;The product&#039;s website&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
	<entry>
		<id>https://neowiki.knowledge.wiki/index.php?title=Schema:Company&amp;diff=22</id>
		<title>Schema:Company</title>
		<link rel="alternate" type="text/html" href="https://neowiki.knowledge.wiki/index.php?title=Schema:Company&amp;diff=22"/>
		<updated>2026-02-26T05:14:12Z</updated>

		<summary type="html">&lt;p&gt;NeoWiki: Importing NeoWiki demo data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{&lt;br /&gt;
	&amp;quot;propertyDefinitions&amp;quot;: {&lt;br /&gt;
		&amp;quot;Founded at&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Websites&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;url&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Main product&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Has main product&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Product&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;Products&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;relation&amp;quot;,&lt;br /&gt;
			&amp;quot;relation&amp;quot;: &amp;quot;Has product&amp;quot;,&lt;br /&gt;
			&amp;quot;targetSchema&amp;quot;: &amp;quot;Product&amp;quot;,&lt;br /&gt;
			&amp;quot;multiple&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;World domination progress&amp;quot;: {&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;number&amp;quot;,&lt;br /&gt;
			&amp;quot;default&amp;quot;: 0&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>NeoWiki</name></author>
	</entry>
</feed>