@prefix neo: <https://neowiki.dev/ontology/>.
@prefix neo-subj: <https://neowiki.dev/entity/>.
@prefix neo-prop: <https://neowiki.dev/prop/>.
@prefix neo-schema: <https://neowiki.dev/schema/>.
@prefix neo-rel: <https://neowiki.dev/relation/>.
@prefix neo-page: <https://neowiki.dev/page/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix dcterms: <http://purl.org/dc/terms/>.

<https://neowiki.dev/page/63> a neo:Page;
    neo:pageName "Acme Inc 2";
    dcterms:created "2026-03-25T10:31:18Z"^^xsd:dateTime;
    dcterms:modified "2026-03-25T10:31:38Z"^^xsd:dateTime;
    neo:lastEditor "AdminName";
    neo:mainSubject neo-subj:s1demo1aaa2aaa1;
    neo:hasSubject neo-subj:s1demo1aaa2aaa1, neo-subj:s1demo1aaa2aaa2, neo-subj:s1demo1aaa2aaa3, neo-subj:s1demo1aaa2aaa4.
neo-subj:s1demo1aaa2aaa1 a neo-schema:Company;
    rdfs:label "ACME Inc. 2";
    neo-prop:Founded_at "2005"^^xsd:integer;
    neo-prop:Websites <https://acme.example>;
    neo-prop:World_domination_progress "42"^^xsd:integer;
    neo-prop:Has_product neo-subj:s1demo1aaaaaaa2.
neo-rel:r1demo1aaaaaar1 a neo:Relation;
    neo:source neo-subj:s1demo1aaa2aaa1;
    neo:target neo-subj:s1demo1aaaaaaa2;
    neo:relationType neo-prop:Has_product.
neo-subj:s1demo1aaa2aaa1 neo-prop:Has_product neo-subj:s1demo1aaaaaaa3.
neo-rel:r1demo1aaaaaar2 a neo:Relation;
    neo:source neo-subj:s1demo1aaa2aaa1;
    neo:target neo-subj:s1demo1aaaaaaa3;
    neo:relationType neo-prop:Has_product.
neo-subj:s1demo1aaa2aaa1 neo-prop:Has_product neo-subj:s1demo1aaaaaaa4.
neo-rel:r1demo1aaaaaar3 a neo:Relation;
    neo:source neo-subj:s1demo1aaa2aaa1;
    neo:target neo-subj:s1demo1aaaaaaa4;
    neo:relationType neo-prop:Has_product.
neo-subj:s1demo1aaa2aaa2 a neo-schema:Product;
    rdfs:label "Foo";
    neo-prop:Available_since "2006"^^xsd:integer;
    neo-prop:Website <https://acme.example/product/foo>.
neo-subj:s1demo1aaa2aaa3 a neo-schema:Product;
    rdfs:label "Foo";
    neo-prop:Available_since "2010"^^xsd:integer;
    neo-prop:Website <https://acme.example/product/bar>.
neo-subj:s1demo1aaa2aaa4 a neo-schema:Product;
    rdfs:label "Foo";
    neo-prop:Available_since "2015"^^xsd:integer;
    neo-prop:Website <https://acme.example/product/baz>.
