diff --git a/src/app/app.config.ts b/src/app/app.config.ts
index b2dc9b11..72d1e64d 100644
--- a/src/app/app.config.ts
+++ b/src/app/app.config.ts
@@ -64,7 +64,10 @@ export class AppConfig {
public static OwlRestriction = 'http://www.w3.org/2002/07/owl#Restriction';
public static creationDate = AppConfig.KnoraApiV2WithValueObjectPath + 'creationDate';
+ public static lastModificationDate = AppConfig.KnoraApiV2WithValueObjectPath + 'lastModificationDate';
public static hasPermissions = AppConfig.KnoraApiV2WithValueObjectPath + 'hasPermissions';
+ public static attachedToProject = AppConfig.KnoraApiV2WithValueObjectPath + 'attachedToProject';
+ public static attachedToUser = AppConfig.KnoraApiV2WithValueObjectPath + 'attachedToUser';
public static Region = AppConfig.KnoraApiV2WithValueObjectPath + 'Region';
@@ -208,6 +211,7 @@ export class AppConfig {
public static xsdInteger = AppConfig.Xsd + 'integer';
public static xsdDecimal = AppConfig.Xsd + 'decimal';
public static xsdUri = AppConfig.Xsd + 'anyURI';
+ public static dateTimeStamp = AppConfig.Xsd + 'dateTimeStamp';
public static resourceSimple = AppConfig.KnoraApiV2SimplePath + 'Resource';
public static dateSimple = AppConfig.KnoraApiV2SimplePath + 'Date';
diff --git a/src/app/model/test-data/resources/BookWithIncomingPages.json b/src/app/model/test-data/resources/BookWithIncomingPages.json
index b5a7dc76..98695d36 100644
--- a/src/app/model/test-data/resources/BookWithIncomingPages.json
+++ b/src/app/model/test-data/resources/BookWithIncomingPages.json
@@ -4,33 +4,72 @@
"incunabula:title" : [ {
"@id" : "http://rdfh.ch/8be1b7cf7103/values/463b6498b70d",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"knora-api:valueAsString" : "[Das] Narrenschiff (lat.)"
}, {
"@id" : "http://rdfh.ch/8be1b7cf7103/values/0965b7d1b70d",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"knora-api:valueAsString" : "Stultifera navis (...)"
} ],
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:43Z"
+ },
"knora-api:hasIncomingLink" : {
"@id" : "http://rdfh.ch/50e7460a7203/values/8bdc04c8-b765-44c8-adb3-5ab536dcd051",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|V knora-base:UnknownUser,knora-base:KnownUser,knora-base:ProjectMember",
"knora-api:linkValueHasSource" : {
"@id" : "http://rdfh.ch/50e7460a7203",
"@type" : "incunabula:page",
"incunabula:partOfValue" : {
"@id" : "http://rdfh.ch/50e7460a7203/values/8bdc04c8-b765-44c8-adb3-5ab536dcd051",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|V knora-base:UnknownUser,knora-base:KnownUser,knora-base:ProjectMember",
"knora-api:linkValueHasTargetIri" : {
"@id" : "http://rdfh.ch/8be1b7cf7103"
}
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:43Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "vorderer Spiegel"
}
},
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "[Das] Narrenschiff (lat.)",
"@context" : {
"rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"knora-api" : "http://api.knora.org/ontology/knora-api/v2#",
"rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
- "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#"
+ "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#",
+ "xsd" : "http://www.w3.org/2001/XMLSchema#"
}
}
diff --git a/src/app/model/test-data/resources/BookWithIncomingPages2.json b/src/app/model/test-data/resources/BookWithIncomingPages2.json
index a27d84f5..434b079c 100644
--- a/src/app/model/test-data/resources/BookWithIncomingPages2.json
+++ b/src/app/model/test-data/resources/BookWithIncomingPages2.json
@@ -4,25 +4,48 @@
"incunabula:title" : [ {
"@id" : "http://rdfh.ch/8be1b7cf7103/values/463b6498b70d",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"knora-api:valueAsString" : "[Das] Narrenschiff (lat.)"
}, {
"@id" : "http://rdfh.ch/8be1b7cf7103/values/0965b7d1b70d",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"knora-api:valueAsString" : "Stultifera navis (...)"
} ],
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:43Z"
+ },
"knora-api:hasIncomingLink" : {
"@id" : "http://rdfh.ch/50e7460a7203/values/8bdc04c8-b765-44c8-adb3-5ab536dcd051",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|V knora-base:UnknownUser,knora-base:KnownUser,knora-base:ProjectMember",
"knora-api:linkValueHasSourceIri" : {
"@id" : "http://rdfh.ch/50e7460a7203"
}
},
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "[Das] Narrenschiff (lat.)",
"@context" : {
"rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"knora-api" : "http://api.knora.org/ontology/knora-api/v2#",
- "schema" : "http://schema.org/",
"rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
- "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#"
+ "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#",
+ "xsd" : "http://www.w3.org/2001/XMLSchema#"
}
}
diff --git a/src/app/model/test-data/resources/EulerLetter_176-O.json b/src/app/model/test-data/resources/EulerLetter_176-O.json
index 3d845525..2643282a 100644
--- a/src/app/model/test-data/resources/EulerLetter_176-O.json
+++ b/src/app/model/test-data/resources/EulerLetter_176-O.json
@@ -1,9 +1,21 @@
{
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg",
"@type" : "beol:letter",
+ "beol:beolIDs" : {
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/W79A_eZXS8SCov-MU6y3Kg",
+ "@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "knora-api:valueAsString" : "L176-O"
+ },
"beol:creationDate" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/w3ZlkuU2T0-0DMrvW8HLJA",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/hg4D_yctTweaZ9vtCkDqnw",
"@type" : "knora-api:DateValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
"knora-api:dateValueHasCalendar" : "GREGORIAN",
"knora-api:dateValueHasEndDay" : 3,
"knora-api:dateValueHasEndEra" : "CE",
@@ -13,261 +25,637 @@
"knora-api:dateValueHasStartEra" : "CE",
"knora-api:dateValueHasStartMonth" : 1,
"knora-api:dateValueHasStartYear" : 1756,
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : "GREGORIAN:1756-01-03 CE"
},
"beol:hasAuthorValue" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/-dzjDkhPRzy-9q0v7QtI7w",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/dt3rgRFjTh-bG_kJPdV2Eg",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/QNWEqmjxQ9W-_hTwKlKP-Q",
+ "@id" : "http://rdfh.ch/0802/Vcd2vupmRuOserhk03c7Vw",
"@type" : "beol:person",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"rdfs:label" : "Leonhard Euler"
}
},
"beol:hasRecipientValue" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/gkdrd8ZXQhucrNLXIf2-qw",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/2YYzj2uGTzeaKze3vScqRA",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/Yv2elBDtSMqoJeKRcxsW8A",
+ "@id" : "http://rdfh.ch/0802/shubb5TjTnu84MqkM6uHlA",
"@type" : "beol:person",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"rdfs:label" : "Christian Goldbach"
}
},
"beol:hasSubject" : [ {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/JpGklfqZSxuu7VI1zIyucw",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/eoyTM9yqT3maAV704FNZoQ",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0801/other_quadratic_forms"
},
"knora-api:listValueAsListNodeLabel" : "Other quadratic forms"
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/SiEBL-EASQSNeFBprbjY3A",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/wKbQ86WkRtSOyQomLN3-GA",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0801/berlin_academy"
},
"knora-api:listValueAsListNodeLabel" : "Berlin Academy"
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/H4IZDQ1eS2WBrMhZRX-vkA",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/NvANUAjVQXusdezLDIHlNg",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0801/other_professional_tasks"
},
"knora-api:listValueAsListNodeLabel" : "Other professional tasks"
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/MdjXlOTNRfqYKEWNIh6kfg",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/q67xf4J3RKe4Y_wNYyVanQ",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0801/errands"
},
"knora-api:listValueAsListNodeLabel" : "Errands"
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/rfao0tqnQTiYyLdlJrNF6w",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/PePWR2aVSueUZAvryhM8RQ",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0801/book_trade_orders"
},
"knora-api:listValueAsListNodeLabel" : "Book trade, orders"
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/_fCIiKjzRYqjXkEhykto5A",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/NoeWmFy1TVyA0CGDTPVCsA",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0801/johann_albrecht_euler"
},
"knora-api:listValueAsListNodeLabel" : "Johann Albrecht Euler"
} ],
"beol:hasText" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/GJQB9IHYTl2RhG4g4ru0YA",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/vnfi65mrQBue7OmI5wonvA",
"@type" : "knora-api:TextValue",
- "knora-api:textValueAsHtml" : "
\n
\n \n
Hochwohlgebohrner Herr
\n \n
Hochgeehrtester Herr Etats Rath\n
\n \n
Bey dem Antritt dieses neuen Jahrs lege ich zuvorderst meinen herzlichsten Wunsch\n für das beständige Wohlseyn Eur. Hochwohlgeb. ab, und empfehle mich dabey gehorsamst\n sammt den meinigen zu Dero fortdaurenden Wohlgewogenheit\\(\\,.\\,\\) Zugleich statte ich auch Eur. Hochwohlgeb. meine verpflichtetste Danksagung ab für\n den gütigen Antheil welchen Dieselben an unserem Zustand zu nehmen belieben und habe\n das Vergnügen Eur. Hochwohlgeb. zu berichten, daß S[ein]\\(\\,{}^{\\text{e}}\\,\\) Königl[iche] Majestät bey dem Anfang dieses Jahrs Dero Pathen unsern ältesten Sohn mit einer jährlichen\n Besoldung von \\(\\,200\\,\\) Rthl. begnadiget.1
\n \n
Ich habe nun schon eine geraume Zeit so viel andere Geschäfte gehabt daß ich an numerische Theoremata, dergleichen ich Eur. Hochwohlgeb. das letste mal vorzulegen die Ehre gehabt, nicht\n habe denken können. Die Partes Matheseos applicatae nehmen mir die meiste Zeit weg, wo es immer mehr zu untersuchen gibt, je mehr man\n damit umgeht.2
\n \n
Weil nun mein Kopf mit so viel anderen Sachen angefüllet ist, so mag das wohl die\n Ursache seyn, daß ich mich in das von Eur. Hochwohlgeb. communicirte und nach der Hand verbesserte Theorema nicht finden kan. Vielleicht haben Eur. Hochwohlgeb. vergessen noch eine wesentliche\n Condition hinzuzusetzen.3
\n \n
Das Theorema war: Si sit\\(\\,aa+bb=P^{2}+eQ^{2}\\,\\)erit etiam
\n \n
\n \\(\\,a^{2}+\\left(\\left(2e+1\\right)b-eP-eQ\\right)^{2}=M^{2}+eN^{2}\\text{;}\\,\\)\n \n
\n \n
weil ich den Grund desselben nicht einsehen konnte, so habe ich die Richtigkeit desselben\n durch Exempel erforschen wollen.\n
\n \n
I. Da \\(\\,1^{2}+4^{2}=17=3^{2}+2\\cdot 2^{2}\\,\\), so ist \\(\\,a=1\\,\\), \\(\\,b=4\\,\\), \\(\\,P=3\\,\\), \\(\\,Q=2\\,\\) und \\(\\,e=2\\,\\), allso müste seyn\n
\n \n
\n \\(\\,1^{2}+\\left(5\\cdot 4-2\\cdot 3-2\\cdot 2\\right)^{2}=1^{2}+10^{2}=101=M^{2}+2N^{2}\\,\\)\n \n
\n \n
welches unmöglich ist.
\n \n
II. Da \\(\\,9^{2}+4^{2}=97=7^{2}+3\\cdot 4^{2}\\,\\), so ist \\(\\,a=9\\,\\); \\(\\,b=4\\,\\); \\(\\,P=7\\,\\); \\(\\,Q=4\\,\\) und \\(\\,e=3\\,\\), allso müsste seyn\n
\n \n
\n \\(\\,9^{2}+\\left(7\\cdot 4-3\\cdot 7-3\\cdot 4\\right)^{2}=9^{2}+5^{2}=106=M^{2}+3N^{2}\\,\\)\n \n
\n \n
welches ebenfalls unmöglich ist.
\n \n
Da ich nun nicht einmal ein Exempel finden kan, welches einträfe, so schliesse ich daraus, daß eine gewisse Bedingung\n in den Zahlen \\(\\,a\\,\\), \\(\\,b\\,\\), \\(\\,P\\,\\) und \\(\\,Q\\,\\) müsse weggelassen seyn, welche ich aber nicht ausfündig machen kan.4
\n \n
Ich habe dem H. Spener zu wissen gethan, daß Eur. Hochwohlgeb. die Rechnung für die überschickten Bücher\n verlangen; bekomme ich dieselbe vor Schliessung dieses Briefs, wie ich ihm habe sagen\n lassen, so werde ich sie beylegen.5
\n \n
Sonsten da er nicht alle verlangte Bücher gehabt, so werde ich inskünftige dergleichen\n Commissionen dem M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme, welcher weit activer ist und alles schaffen kan, auftragen. Wegen des Werks: La Clef du Cabinet des Princes füge hier die Antwort des M.\\(\\,{}^{\\text{r}}\\,\\)de Bourdeaux bey.6
\n \n
Sollte dasselbe vor der Ankunft einer Resolution von Eur. Hochwohlgeb. schon verkauft worden seyn, so hat sich M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme anheischig gemacht, dasselbe auch zu liefern.\n
\n \n
Ich habe die Ehre mit der schuldigsten Hochachtung zu verharren
\n \n
Eur. Hochwohlgebohrnen
\n \n
gehorsamster Diener
\n \n
\n L. Euler\n \n
\n \n
Berlin den 3\\(\\,{}^{\\text{ten}}\\,\\)Januarii
\n \n
1756.
\n \n
\n Berlin, January 3rd, 1756\n \n
\n \n
\n Original, 1 fol. – RGADA, f. 181, n. 1413, č. V, fol. 123rv\n \n
\n \n
\n Published: Correspondance (1843), t. I, p. 636–637; Euler-Goldbach (1965), p. 385–386\n \n
\n \n
\n
\n
"
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "knora-api:textValueAsHtml" : "\n
\n \n
Hochwohlgebohrner Herr
\n \n
Hochgeehrtester Herr Etats Rath\n
\n \n
Bey dem Antritt dieses neuen Jahrs lege ich zuvorderst meinen herzlichsten Wunsch\n für das beständige Wohlseyn Eur. Hochwohlgeb. ab, und empfehle mich dabey gehorsamst\n sammt den meinigen zu Dero fortdaurenden Wohlgewogenheit\\(\\,.\\,\\) Zugleich statte ich auch Eur. Hochwohlgeb. meine verpflichtetste Danksagung ab für\n den gütigen Antheil welchen Dieselben an unserem Zustand zu nehmen belieben und habe\n das Vergnügen Eur. Hochwohlgeb. zu berichten, daß S[ein]\\(\\,{}^{\\text{e}}\\,\\) Königl[iche] Majestät bey dem Anfang dieses Jahrs Dero Pathen unsern ältesten Sohn mit einer jährlichen\n Besoldung von \\(\\,200\\,\\) Rthl. begnadiget.1
\n \n
Ich habe nun schon eine geraume Zeit so viel andere Geschäfte gehabt daß ich an numerische Theoremata, dergleichen ich Eur. Hochwohlgeb. das letste mal vorzulegen die Ehre gehabt, nicht\n habe denken können. Die Partes Matheseos applicatae nehmen mir die meiste Zeit weg, wo es immer mehr zu untersuchen gibt, je mehr man\n damit umgeht.2
\n \n
Weil nun mein Kopf mit so viel anderen Sachen angefüllet ist, so mag das wohl die\n Ursache seyn, daß ich mich in das von Eur. Hochwohlgeb. communicirte und nach der Hand verbesserte Theorema nicht finden kan. Vielleicht haben Eur. Hochwohlgeb. vergessen noch eine wesentliche\n Condition hinzuzusetzen.3
\n \n
Das Theorema war: Si sit\\(\\,aa+bb=P^{2}+eQ^{2}\\,\\)erit etiam
\n \n
\n \\(\\,a^{2}+\\left(\\left(2e+1\\right)b-eP-eQ\\right)^{2}=M^{2}+eN^{2}\\text{;}\\,\\)\n \n
\n \n
weil ich den Grund desselben nicht einsehen konnte, so habe ich die Richtigkeit desselben\n durch Exempel erforschen wollen.\n
\n \n
I. Da \\(\\,1^{2}+4^{2}=17=3^{2}+2\\cdot 2^{2}\\,\\), so ist \\(\\,a=1\\,\\), \\(\\,b=4\\,\\), \\(\\,P=3\\,\\), \\(\\,Q=2\\,\\) und \\(\\,e=2\\,\\), allso müste seyn\n
\n \n
\n \\(\\,1^{2}+\\left(5\\cdot 4-2\\cdot 3-2\\cdot 2\\right)^{2}=1^{2}+10^{2}=101=M^{2}+2N^{2}\\,\\)\n \n
\n \n
welches unmöglich ist.
\n \n
II. Da \\(\\,9^{2}+4^{2}=97=7^{2}+3\\cdot 4^{2}\\,\\), so ist \\(\\,a=9\\,\\); \\(\\,b=4\\,\\); \\(\\,P=7\\,\\); \\(\\,Q=4\\,\\) und \\(\\,e=3\\,\\), allso müsste seyn\n
\n \n
\n \\(\\,9^{2}+\\left(7\\cdot 4-3\\cdot 7-3\\cdot 4\\right)^{2}=9^{2}+5^{2}=106=M^{2}+3N^{2}\\,\\)\n \n
\n \n
welches ebenfalls unmöglich ist.
\n \n
Da ich nun nicht einmal ein Exempel finden kan, welches einträfe, so schliesse ich daraus, daß eine gewisse Bedingung\n in den Zahlen \\(\\,a\\,\\), \\(\\,b\\,\\), \\(\\,P\\,\\) und \\(\\,Q\\,\\) müsse weggelassen seyn, welche ich aber nicht ausfündig machen kan.4
\n \n
Ich habe dem H. Spener zu wissen gethan, daß Eur. Hochwohlgeb. die Rechnung für die überschickten Bücher\n verlangen; bekomme ich dieselbe vor Schliessung dieses Briefs, wie ich ihm habe sagen\n lassen, so werde ich sie beylegen.5
\n \n
Sonsten da er nicht alle verlangte Bücher gehabt, so werde ich inskünftige dergleichen\n Commissionen dem M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme, welcher weit activer ist und alles schaffen kan, auftragen. Wegen des Werks: La Clef du Cabinet des Princes füge hier die Antwort des M.\\(\\,{}^{\\text{r}}\\,\\)de Bourdeaux bey.6
\n \n
Sollte dasselbe vor der Ankunft einer Resolution von Eur. Hochwohlgeb. schon verkauft worden seyn, so hat sich M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme anheischig gemacht, dasselbe auch zu liefern.\n
\n \n
Ich habe die Ehre mit der schuldigsten Hochachtung zu verharren
\n \n
Eur. Hochwohlgebohrnen
\n \n
gehorsamster Diener
\n \n
\n L. Euler\n \n
\n \n
Berlin den 3\\(\\,{}^{\\text{ten}}\\,\\)Januarii
\n \n
1756.
\n \n
\n Berlin, January 3rd, 1756\n \n
\n \n
\n Original, 1 fol. – RGADA, f. 181, n. 1413, č. V, fol. 123rv\n \n
\n \n
\n Published: Correspondance (1843), t. I, p. 636–637; Euler-Goldbach (1965), p. 385–386\n \n
\n \n
\n
\n
"
},
"beol:letterHasLanguage" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/ilKXhfZnS9uAYDNQzi6m8Q",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/I6jR1ifGQ8uy1BIT3mhgvw",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : "German"
},
"beol:letterHasNumber" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/hS_gqlOtQsCqA-gqrgIHCQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/eL8W8sc1QgKlYGZpo2GdEw",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : "176"
},
"beol:letterHasOriginalValue" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/veu6BVjbTcKFPAEmcYRjXQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/fHU-rpfbQFuWytICM7J-Xg",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/1PUuT3mcRGmeunDS3ZNyOA",
+ "@id" : "http://rdfh.ch/0801/3cr2_CqhQUSorLQGEtmt2w",
"@type" : "beol:manuscript",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "L176 Original Manuscript"
}
},
"beol:letterHasRepertoriumNumber" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/na-JeCAxSXyYjpx0Cn-qrA",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/Hpvq2shjR8egU_6nKSprdA",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : "890"
},
"beol:letterHasTranslationValue" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/_iqsIP5NSLiBE8hPnDwAKw",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/OxitqFtAQTuxX7sIfnvHpg",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/yBr2EjBMTkeCeVmGPfjCtw",
+ "@id" : "http://rdfh.ch/0801/O_KmrUMZSZmDRx4z7JYEQQ",
"@type" : "beol:letter",
- "rdfs:label" : "L176-T"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L176 Translation"
}
},
"beol:letterIsPublishedValue" : [ {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/gOwn9vzMT-2XHkgZe42fTA",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/4bc4DYlgT7-ZUbrRNN3UNQ",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/79Rz6MaAQESBalJeWl2TVA",
+ "@id" : "http://rdfh.ch/0801/zQI2S2xrTFKH1HlIJwUrVA",
"@type" : "beol:publishedLetter",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "L176-O published in Fuß edition"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/5-CVslP4R9KY1_d3d83qMw",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/l4VgyQweS9ygLEr0QlQm8g",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/pFN8MlXBSYaB7oZRxUpV0Q",
+ "@id" : "http://rdfh.ch/0801/9iYlwZUFQLW0Ix4M94TehA",
"@type" : "beol:publishedLetter",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "L176-O published in Yushkevich-Winter edition"
}
} ],
"beol:letterIsReplyToValue" : [ {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/iW0aQbZ2Qaeigqr5RN-Hlg",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/peP2vE5wTiq99SnNflB8LQ",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/_iz5PE4rT8KNfbmfW8DxrQ",
+ "@id" : "http://rdfh.ch/0801/rvziQATZTKSsupOqOgadNg",
"@type" : "beol:letter",
- "rdfs:label" : "L174-O"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:01.392Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L174 Original"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/utSZPRdcSjC78DHtGBVZ3Q",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/00jtFfhNTZuqTo2uW8Pm6g",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/f5a92GjJRriC1GTY_NzfvQ",
+ "@id" : "http://rdfh.ch/0801/v8xVyLQqSxmCxPaLhOcMzA",
"@type" : "beol:letter",
- "rdfs:label" : "L175-O"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:02.802Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L175 Original"
}
} ],
"beol:location" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/xpStwEfxSdGH14StZ_KWHQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/o1WwLBDLS665GTK8kGABmw",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : "Berlin"
},
"beol:title" : {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/rqHQuCoeRAmfUElMDuEfFg",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/lQO95mhPSbmUEA1MUh0hhg",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : " Euler to Goldbach, January 3rd, 1756"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:hasStandoffLinkToValue" : [ {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/fsxYuF6BSl6opUqcetx4Zg",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/6H95i9yiR72YXYs4SpIt8g",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/KvfXRPkXTziMYMVYSz9tBg",
+ "@id" : "http://rdfh.ch/0801/f-2Ta0NRSBikdqXivSLuMw",
"@type" : "beol:endnote",
- "rdfs:label" : "L176 note-2"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L176 note-5"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/aMwl67I7RGa5Dvk-lczTdQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/9AzZgLodSvSGaIfzNh5Xrw",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/up0Q0ZzPSLaULC2tlTs1sA",
+ "@id" : "http://rdfh.ch/0802/UWsNivv1R46modSygvjOLA",
"@type" : "beol:person",
- "rdfs:label" : "Claude Jordan"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
+ "rdfs:label" : "Jean Neaulme"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/1F3yY5ywSfS8n8U6RYE12w",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/L4Te6inLQJG75cq07rpKng",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/Z_-TT-8_QNSRv-O7dKCW0w",
- "@type" : "beol:person",
- "rdfs:label" : "Johann Carl (the Elder) Spener"
+ "@id" : "http://rdfh.ch/0801/sd6JbWUlTvig8vWIqZy6-Q",
+ "@type" : "beol:endnote",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L176 note-4"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/NIpFHSbKSe-BDC8RUmuhqg",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/NY_owix3TkuKnN0AafP3dQ",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/nRO3f9ENSsqTH8S0Z1uO9w",
- "@type" : "beol:endnote",
- "rdfs:label" : "L176 note-6"
+ "@id" : "http://rdfh.ch/0802/6dLVf6BjRPCmndIwhFZLEw",
+ "@type" : "beol:person",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
+ "rdfs:label" : "Etienne de Bourdeaux"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/wu7kCf2CR-e2aAvT8Q1DhQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/R8M_EJQ3RL6Xl7fehksBIQ",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/spy5H95GTV2RElphXFPbbw",
- "@type" : "beol:endnote",
- "rdfs:label" : "L176 note-1"
+ "@id" : "http://rdfh.ch/0802/iJK4gffNTW-18RsNf8JLbA",
+ "@type" : "http://0.0.0.0:3333/ontology/0802/biblio/v2#Book",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:35:02.004Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
+ "rdfs:label" : "Jordancl 1704"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/YQRbSoBGR_-QrpHB_o0ReQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/SilEGJ62R1ixDqxLY5KCyg",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/FsJNrctNTMuwJPCX-7OTVg",
+ "@id" : "http://rdfh.ch/0802/BqZGx2KmRS2mIMK_DUxapg",
"@type" : "beol:person",
- "rdfs:label" : "Jean Neaulme"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
+ "rdfs:label" : "Friedrich II."
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/mEhOhC8STn6t816gMUMLUQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/VUVqkIxMTZOhVjuKDsrpeg",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/08Y_rCK5QM-gvchjtixomw",
+ "@id" : "http://rdfh.ch/0801/_vmiVEfoSw-BA2_Ppz2nPQ",
"@type" : "beol:endnote",
- "rdfs:label" : "L176 note-5"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L176 note-3"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/IG_gpA_vQBW-8hBbP1y0LQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/ZFbjzaEMRGSuUDc31hvT-g",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/DhgjcrRhRfunaSt77-bUxg",
- "@type" : "beol:person",
- "rdfs:label" : "Friedrich II."
+ "@id" : "http://rdfh.ch/0801/KPOPzTVLSdyxiScitUAyTQ",
+ "@type" : "beol:endnote",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L176 note-1"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/veG9DY7pR46P62Ylvm7Nzw",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/ewsdvHQISjulNWbubNZsig",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/bP1CO3j3TCOUHYdQqKw9pA",
- "@type" : "beol:person",
- "rdfs:label" : "Johann Albrecht Euler"
+ "@id" : "http://rdfh.ch/0801/0m02gFutQ7yEt559a2uOlg",
+ "@type" : "beol:endnote",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L176 note-2"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/udl1maFWTUu1MLcla4bm1g",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/kdjlx1aQQraDmjhbqbohOw",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/kZeMXLrQTQONISqizXtf5g",
- "@type" : "beol:endnote",
- "rdfs:label" : "L176 note-4"
+ "@id" : "http://rdfh.ch/0802/shgx0f71R66N_noFNc3gkg",
+ "@type" : "beol:person",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
+ "rdfs:label" : "Johann Albrecht Euler"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/uwc5JnP4R36elNlokOTX7A",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/pgeLHpJCSla90cHjPeZM7w",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/vR3fWAXxRqShBZvWKVA9tA",
+ "@id" : "http://rdfh.ch/0802/Hju9FefOQ5KgnXUHnYqUVA",
"@type" : "beol:person",
- "rdfs:label" : "Etienne de Bourdeaux"
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
+ "rdfs:label" : "Claude Jordan"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/dyhBkbFrQBSRevFJGMUfwQ",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/pocJr3PpQ3yT74bWZKqRRw",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/biblio/sAImr-uGRBGpsdBdoI6XCw",
- "@type" : "http://0.0.0.0:3333/ontology/0802/biblio/v2#Book",
- "rdfs:label" : "jordanclbhae"
+ "@id" : "http://rdfh.ch/0801/2BZx-h5vTcCXaqxaSXjoXA",
+ "@type" : "beol:endnote",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:43:04.192Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "rdfs:label" : "L176 note-6"
}
}, {
- "@id" : "http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/6ry3IMMKRNq9x29EiAhYTw",
+ "@id" : "http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/q1E8UQ4DS7-oIOk01v9vgQ",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://www.knora.org/ontology/knora-base#SystemUser"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:SystemUser|V knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
- "@id" : "http://rdfh.ch/0801/beol/FJCOlKBdRtW8caqnN4A3Vw",
- "@type" : "beol:endnote",
- "rdfs:label" : "L176 note-3"
+ "@id" : "http://rdfh.ch/0802/CKzU513NSWyVhwe0gpbMWg",
+ "@type" : "beol:person",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/Q-6Sssu8TBWrcCGuVJ0lVw"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-08-27T17:32:12.822Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
+ "rdfs:label" : "Johann Carl (the Elder) Spener"
}
} ],
- "rdfs:label" : "L176-O",
+ "rdfs:label" : "L176 Original",
"@context" : {
"rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
- "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
"knora-api" : "http://api.knora.org/ontology/knora-api/v2#",
- "beol" : "http://0.0.0.0:3333/ontology/0801/beol/v2#"
+ "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
+ "beol" : "http://0.0.0.0:3333/ontology/0801/beol/v2#",
+ "xsd" : "http://www.w3.org/2001/XMLSchema#"
}
}
diff --git a/src/app/model/test-data/resources/SearchForHolzschnitt.json b/src/app/model/test-data/resources/SearchForHolzschnitt.json
index c1704d49..05a8ae59 100644
--- a/src/app/model/test-data/resources/SearchForHolzschnitt.json
+++ b/src/app/model/test-data/resources/SearchForHolzschnitt.json
@@ -1,3 +1,4 @@
+
{
"@graph" : [ {
"@id" : "http://rdfh.ch/003c45b4be02",
@@ -5,8 +6,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/003c45b4be02/values/fc1824420d29",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"knora-api:valueAsString" : "Holzschnitt: Der Sohn als Hirte mit seinen Schweinen sitzt an einen Baum gelehnt in der Natur und blickt den Engel an, unkoloriert.\n10.3 x 7.4 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:34Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "c8r"
}, {
"@id" : "http://rdfh.ch/00505cf0a803",
@@ -14,8 +30,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/00505cf0a803/values/549527258a26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 105.\nHolzschnitt identisch mit Kap. 95: In einer Landschaft fasst ein Narr, der ein Zepter in der Linken hält, einem Mann an die Schulter und redet auf ihn ein, er möge die Feiertage missachten, 11.7 x 8.6 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:46Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "p7v"
}, {
"@id" : "http://rdfh.ch/00c5058f3a",
@@ -23,8 +54,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/00c5058f3a/values/f8fe2f9f4d23",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Holzschnitt: Kreuzaufrichtung; links und rechts Bordürenleisten.\nBordüre mit Jägern, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb, Braun, Grau, Schwarz, Goldhöhung."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:12Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "r1r"
}, {
"@id" : "http://rdfh.ch/00c650d23303",
@@ -32,8 +78,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/00c650d23303/values/af68552c3626",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 21.\nHolzschnitt zu Kap. 21: Andere tadeln und selbst unrecht handeln.\nEin Narr, der mit seinen Beinen im Sumpf steckt, zeigt auf einen nahen Weg, an dem ein Bildstock die Richtung weist.\n11.7 x 8.5 cm.\nUnkoloriert.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:40Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "d4v"
}, {
"@id" : "http://rdfh.ch/011049883d",
@@ -41,8 +102,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/011049883d/values/3cda1b7b2c23",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Initiale \"I\" (Kolorierung in Rot, Blau und Gelb).\nBordüre mit Fabelwesen und Tieren, oben kämpft ein Vogel mit einem Drachen, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb, Braun."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:12Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "r7v"
}, {
"@id" : "http://rdfh.ch/012460c42701",
@@ -50,8 +126,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/012460c42701/values/68b0eb85b523",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Holzschnitt: Christus erscheint Maria Magdalena.\nMasse: 76 x 62 mm.\nunkoloriert.\nBildüberschrift: \"Des herrem Jesu vfferstendung de|offenbart den frowen. iiij\".\nnicht rubriziert.\nNummerierung des Holzschnitts (Graphitstift): \"47\"."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:18Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "m8v"
}, {
"@id" : "http://rdfh.ch/014b43f902",
@@ -59,8 +150,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/014b43f902/values/cb1b86ee3b23",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Text.\nBordüre mit kämpfenden Wildleuten, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Braun, Grau."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:10Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "a6v"
}, {
"@id" : "http://rdfh.ch/01ae6be29c01",
@@ -68,8 +174,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/01ae6be29c01/values/3c54c8d4b922",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "ein neuer Textabschnitt: \"Fundamentum meditationis\".\nRubrizierung: Blau, Rot.\nHolzschnitt: Flucht nach Ägypten.\n68 x 54 mm;\nKolorierung: Hellrot, Rot, Blau, Grün, Gelb, Hellbraun, Silberhöhung."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:23Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "b5r"
}, {
"@id" : "http://rdfh.ch/025b8c8140",
@@ -77,8 +198,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/025b8c8140/values/6d465209f222",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Bordüre: Jesuskind mit Engeln, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:13Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "s6r"
}, {
"@id" : "http://rdfh.ch/025cd7c43903",
@@ -86,8 +222,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/025cd7c43903/values/3396a0064026",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 33.\nHolzschnitt zu Kap. 33: Vom Ehebruch.\nEin närrischer Mann und seine betrügerische Ehefrau sitzen beisammen am gedeckten Tisch. Er beobachtet sie durch die gespreizten Finger seiner Linken. Sie zieht ihm einen Halm durch den Mund. Derweil jagt unter dem Tisch eine Katze nach Mäusen.\n11.6 x 8.4 cm.\nUnkoloriert.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:40Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "f1v"
}, {
"@id" : "http://rdfh.ch/029686f205",
@@ -95,8 +246,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/029686f205/values/a46d175a4723",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "neuer Textabschnitt: \"O Maria/ du küscher rey-|ner sarch/ ...\".\nInitiale \"O\" (Kolorierung in Rot, Blau und Gelb).\nBordüre mit Jägern, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb, Braun, Grau."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:10Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "b5r"
}, {
"@id" : "http://rdfh.ch/02abe871e903",
@@ -104,8 +270,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/02abe871e903/values/1852a8aa8526",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 99.\nHolzschnitt zu Kap. 99: Von der Einbusse des christlichen Reiches\nAuf einem Hof kniet ein Narr vor den Vertretern der kirchlichen und weltlichen Obrigkeit, die vor ein Portal getreten sind, und bittet darum, sie mögen die Narrenkappe verschmähen. Im Hintergrund kommentieren zwei weitere Narren über die Hofmauer hinweg das Geschehen mit ungläubigen Gesten, 11.7 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:49Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "o5v"
}, {
"@id" : "http://rdfh.ch/02ac33b5e206",
@@ -113,17 +294,47 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/02ac33b5e206/values/09a8c2b99a2a",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Holzschnitt: Der zweite Auszug der Ismaeliter.\nunkoloriert."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:34Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "B3v"
}, {
"@id" : "http://rdfh.ch/02e72d26a806",
"@type" : "knora-api:Region",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:54Z"
+ },
"knora-api:hasComment" : {
"@id" : "http://rdfh.ch/02e72d26a806/values/6afa3b045c26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Derselbe Holzschnitt wird auf Seite f7r verwendet."
},
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"rdfs:label" : "Derselbe Holzschnitt wird auf Seite f7r verwendet."
}, {
"@id" : "http://rdfh.ch/0344f2d4a201",
@@ -131,8 +342,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/0344f2d4a201/values/24062f0ab822",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "ein neuer Textabschnitt unten:\n\"De p(ro)stratio(n)e et co(n)culcatio(n)e christi.\"\nRubrizierung: Blau, Rot.\nHolzschnitt: Gefangennahme Jesu.\n69 x 51 mm.\nKolorierung: Hellrot, Rot, Blau, Grün, Gelb, Grau, Schwarz, Silberhöhung."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:23Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "d2r"
}, {
"@id" : "http://rdfh.ch/036c204d7703",
@@ -140,17 +366,47 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/036c204d7703/values/2027ebb82626",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 1.\nHolzschnitt zu Kap. 1: Von ungenutzten Büchern.\nEin Gelehrter sitzt bei seinen Büchern und reinigt sie mit einem Staubwedel, liest sie aber nicht.\n11.6 x 8.4 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:43Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "b3r"
}, {
"@id" : "http://rdfh.ch/036d6b907006",
"@type" : "knora-api:LinkObj",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:54Z"
+ },
"knora-api:hasComment" : {
"@id" : "http://rdfh.ch/036d6b907006/values/f7f155f9c423",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "identischer Holzschnitt"
},
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"rdfs:label" : "identischer Holzschnitt"
}, {
"@id" : "http://rdfh.ch/03a6cf7a43",
@@ -158,8 +414,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/03a6cf7a43/values/855715272d23",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Initiale \"A\" (Kolorierung in Rot, Blau und Gelb).\nBordüre mit Fabelwesen und Tieren, oben kämpft ein Vogel mit einem Drachen, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb, Braun."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:13Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "t4v"
}, {
"@id" : "http://rdfh.ch/03e1c9eb08",
@@ -167,8 +438,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/03e1c9eb08/values/14997f9a3c23",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Text.\nBordüre mit kämpfenden Wildleuten, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb, Braun, Grau."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:10Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "c3v"
}, {
"@id" : "http://rdfh.ch/042c0de50b",
@@ -176,8 +462,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/042c0de50b/values/edea10064823",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Text.\nHolzschnitt: Beschneidung Jesu; links und rechts Bordürenleisten.\nBordüre mit Jägern, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb, Braun, Grau."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:10Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "d2r"
}, {
"@id" : "http://rdfh.ch/04416f64ef03",
@@ -185,8 +486,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/04416f64ef03/values/6ce3c0ef8b26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 109.\nHolzschnitt zu Kap. 109: Von Verachtung des Unglücks\nEin Narr hat sich in einem Boot zu weit vom Ufer entfernt. Nun birst der Schiffsrumpf, das Segel flattert haltlos umher. Der Narr hält sich an einem Seil der Takelage fest, 11.6 x 8.4 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:50Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "q2v"
}, {
"@id" : "http://rdfh.ch/0442baa7e806",
@@ -194,8 +510,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/0442baa7e806/values/82c1eefa9e2a",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser",
"knora-api:valueAsString" : "Holzschnitt: Die Türken und Ungläubigen töten christliche Frauen.\nunkoloriert."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:33Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "D4v"
}, {
"@id" : "http://rdfh.ch/047c69d5b403",
@@ -203,18 +534,48 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/047c69d5b403/values/2e7ae6dc9026",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "\"Finis stultifere Nauis\" (Hartl 2001: Stultitia navis XIX).\nHolzschnitt: Druckermarke.\nIn Astwerkrahmen steht ein Löwe als Wappenhalter mit dem Wappenschild des Druckers. Darüber eine Banderole mit der Inschrift \"NIHIL .SINE. .CAVSA. 1497.\"; darunter eine Banderole mit dem Namen \".IO. Bergman. .DE. OLPE\", 8.9 x 7.4 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:47Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "t1v"
}, {
"@id" : "http://rdfh.ch/047db418ae06",
"@type" : "knora-api:Region",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:54Z"
+ },
"knora-api:hasComment" : {
"@id" : "http://rdfh.ch/047db418ae06/values/7331b94196a104",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:textValueAsXml" : "\nDerselbe Holzschnitt wird auf Seite c7r der lateinischen Ausgabe des Narrenschiffs verwendet.
",
"knora-api:textValueHasMapping" : "http://rdfh.ch/standoff/mappings/StandardMapping"
},
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"rdfs:label" : "Derselbe Holzschnitt wird auf Seite c7r der lateinischen Ausgabe des Narrenschiffs verwendet."
}, {
"@id" : "http://rdfh.ch/04f1127446",
@@ -222,14 +583,30 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/04f1127446/values/ea6e5ece1c23",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Bordüre: Ranken mit Fabelwesen, Holzschnitt.\nKolorierung: Rot, Blau, Grün, Gelb, Braun."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:13Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "v3r"
} ],
"@context" : {
"rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
- "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
"knora-api" : "http://api.knora.org/ontology/knora-api/v2#",
- "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#"
+ "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
+ "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#",
+ "xsd" : "http://www.w3.org/2001/XMLSchema#"
}
}
diff --git a/src/app/model/test-data/resources/SearchResultNarr.json b/src/app/model/test-data/resources/SearchResultNarr.json
index 338d38a6..34a7836f 100644
--- a/src/app/model/test-data/resources/SearchResultNarr.json
+++ b/src/app/model/test-data/resources/SearchResultNarr.json
@@ -1,3 +1,4 @@
+
{
"@graph" : [ {
"@id" : "http://rdfh.ch/00505cf0a803",
@@ -5,8 +6,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/00505cf0a803/values/549527258a26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 105.\nHolzschnitt identisch mit Kap. 95: In einer Landschaft fasst ein Narr, der ein Zepter in der Linken hält, einem Mann an die Schulter und redet auf ihn ein, er möge die Feiertage missachten, 11.7 x 8.6 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:46Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "p7v"
}, {
"@id" : "http://rdfh.ch/00c650d23303",
@@ -14,8 +30,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/00c650d23303/values/af68552c3626",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 21.\nHolzschnitt zu Kap. 21: Andere tadeln und selbst unrecht handeln.\nEin Narr, der mit seinen Beinen im Sumpf steckt, zeigt auf einen nahen Weg, an dem ein Bildstock die Richtung weist.\n11.7 x 8.5 cm.\nUnkoloriert.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:40Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "d4v"
}, {
"@id" : "http://rdfh.ch/02abe871e903",
@@ -23,8 +54,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/02abe871e903/values/1852a8aa8526",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 99.\nHolzschnitt zu Kap. 99: Von der Einbusse des christlichen Reiches\nAuf einem Hof kniet ein Narr vor den Vertretern der kirchlichen und weltlichen Obrigkeit, die vor ein Portal getreten sind, und bittet darum, sie mögen die Narrenkappe verschmähen. Im Hintergrund kommentieren zwei weitere Narren über die Hofmauer hinweg das Geschehen mit ungläubigen Gesten, 11.7 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:49Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "o5v"
}, {
"@id" : "http://rdfh.ch/04416f64ef03",
@@ -32,8 +78,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/04416f64ef03/values/6ce3c0ef8b26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 109.\nHolzschnitt zu Kap. 109: Von Verachtung des Unglücks\nEin Narr hat sich in einem Boot zu weit vom Ufer entfernt. Nun birst der Schiffsrumpf, das Segel flattert haltlos umher. Der Narr hält sich an einem Seil der Takelage fest, 11.6 x 8.4 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:50Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "q2v"
}, {
"@id" : "http://rdfh.ch/04f25db73f03",
@@ -41,8 +102,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/04f25db73f03/values/aa8971af4d26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 44.\nHolzschnitt zu Kap. 44: Vom Lärmen in der Kirche\nEin junger Narr in edler Kleidung, der einen Jagdfalken auf dem Arm hält, von Hunden begleitet wird, und klappernde Schuhsohlen trägt, geht auf ein Portal zu, in dem eine Frau steht und ihm schöne Augen macht.\n11.7 x 8.5 cm.\nUnkoloriert."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:40Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "g6v"
}, {
"@id" : "http://rdfh.ch/05c7acceb703",
@@ -50,8 +126,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/05c7acceb703/values/5f23f3171d26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Titelblatt (Hartl 2001: Stultitia Navis I).\nHolzschnitt: \nErsatzholzschnitt für Titelblatt, recto:\nEin Schiff voller Narren fährt nach links. Hinten auf der Brücke trinkt ein Narr aus einer Flasche, vorne prügeln sich zwei weitere narren so sehr, dass einer von ihnen über Bord zu gehen droht. Oben die Inschrift \"Nauis stultoru(m).\"; auf dem Schiffsrumpf die Datierung \"1.4.9.7.\".\n6.5 x 11.5 cm.\noben rechts die bibliographische Angabe (Graphitstift) \"Hain 3750\"; unten rechts Bibliotheksstempel (queroval, schwarz): \"BIBL. PUBL.| BASILEENSIS\"."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:47Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "a1r; Titelblatt, recto"
}, {
"@id" : "http://rdfh.ch/075d33c1bd03",
@@ -59,8 +150,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/075d33c1bd03/values/77718ce21e26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 4.\nHolzschnitt zu Kap. 4: Von neumodischen Sitten.\nEin alter Narr mit Becher hält einem jungen Mann in modischer Tracht einen Spiegel vor. Zwischen Narr und Jüngling steht der Name „.VLI.“; über den beiden schwebt eine Banderole mit der Aufschrift „vly . von . stouffen . . frisch . vnd vngschaffen“; zwischen den Füssen des Jünglings ist die Jahreszahl „.1.4.9.4.“ zu lesen.\n11.6 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:47Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "b6r"
}, {
"@id" : "http://rdfh.ch/0b8940a6c903",
@@ -68,8 +174,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/0b8940a6c903/values/f752218c3b26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 29.\nHolzschnitt zu Kap. 29: Von Verkennung der Mitmenschen.\nEin Narr verspottet einen Sterbenden, neben dessen Bett eine Frau betet, während sich unter dem Narren die Hölle in Gestalt eines gefrässigen Drachenkopfs auftut, 11.7 x 8.5 cm.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:48Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "e8r"
}, {
"@id" : "http://rdfh.ch/0d1fc798cf03",
@@ -77,8 +198,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/0d1fc798cf03/values/e75f1e764d26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 43.\nHolzschnitt zu Kap. 43: Missachten der ewigen Seligkeit\nEin Narr steht mit einer grossen Waage in einer Landschaft und wiegt das Himmelsfirmament (links) gegen eine Burg (rechts) auf. Die Zunge der Waage schlägt zugunsten der Burg aus, 11.5 x 8.4 cm.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:48Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "g5r"
}, {
"@id" : "http://rdfh.ch/0d5ac1099503",
@@ -86,8 +222,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/0d5ac1099503/values/4dcdbebc7126",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 66.\nHolzschnitt zu Kap. 66: Von der Erforschung der Welt.\nEin Narr hat ein Schema des Universums auf den Boden Gezeichnet und vermisst es mit einem Zirkel. Von hinten blickt ein zweiter Narr über eine Mauer und wendet sich dem ersten mit spöttischen Gesten zu.\n11.6 x 8.4 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:45Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "k4r"
}, {
"@id" : "http://rdfh.ch/0fb54d8bd503",
@@ -95,8 +246,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/0fb54d8bd503/values/9a966e995f26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 58.\nHolzschnitt zu Kap. 58: Sich um die Angelegenheiten anderer kümmern.\nEin Narr versucht mit einem Wassereimer den Brand im Haus des Nachbarn zu löschen und wird dabei von einem anderen Narren, der an seinem Mantel zerrt, unterbrochen, den hinter ihm steht auch sein eigenes Haus in Flammen.\n11.6 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:48Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "i2r"
}, {
"@id" : "http://rdfh.ch/0ff047fc9a03",
@@ -104,8 +270,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/0ff047fc9a03/values/b9ac70cc7926",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 81.\nHolzschnitt zu Kap. 81: Aus Küche und Keller.\nEin Narr führt von einem Boot aus vier Knechte am Strick, die sich in einer Küche über Spreis und Trank hermachen, während eine Frau, die am Herdfeuer sitzt, das Essen zubereitet, 11.7 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:45Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "m1r"
}, {
"@id" : "http://rdfh.ch/114bd47ddb03",
@@ -113,8 +294,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/114bd47ddb03/values/c99f73e26726",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 69.\nHolzschnitt Lemmer 1979, S. 117: Variante zu Kap. 69.\nEin Narr, der vor einer Stadtkulisse steht, hat mit seiner Rechten einen Ball in die Luft geworfen und schlägt mit seiner Linken einen Mann, der sogleich nach seinem Dolch greift. Ein junger Mann beobachtet das Geschehen.\nDer Bildinhalt stimmt weitgehend mit dem ursprünglichen Holzschnitt überein.\n11.7 x 8.4 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:49Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "k7r"
}, {
"@id" : "http://rdfh.ch/14dd8cbc3403",
@@ -122,8 +318,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/14dd8cbc3403/values/7e39f54a3726",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 23.\nHolzschnitt zu Kap. 23: Vom blinden Vertrauen auf das Glück.\nEin Narr schaut oben aus dem Fenster seines Hauses, das unten lichterloh brennt. Am Himmel erscheint die rächende Gotteshand, die mit einen Hammer auf Haus und Narr einschlägt. Auf der Fahne über dem Erker des Hauses ist der Baselstab zu erkennen.\n11.5 x 8.2 cm.\nUnkoloriert.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:40Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "d6v"
}, {
"@id" : "http://rdfh.ch/167313af3a03",
@@ -131,8 +342,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/167313af3a03/values/1ab5d9ef4226",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 34.\nHolzschnitt zu Kap. 34: Ein Narr sein und es bleiben.\nEin Narr wird von drei Gänsen umgeben, deren eine von ihm wegfliegt.\n11.7 x 8.4 cm.\nUnkoloriert."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:40Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "f3v"
}, {
"@id" : "http://rdfh.ch/1b746fabbe03",
@@ -140,8 +366,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/1b746fabbe03/values/8318d9c71f26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 6.\nHolzschnitt zu Kap. 6: Von mangelhafter Erziehung der Kinder.\nZwei Jungen geraten am Spieltisch über Karten und Würfen in Streit. Während der eine einen Dolch zückt und der andere nach seinem Schwert greift, sitzt ein älterer Narr mit verbundenen Augen ahnungslos neben dem Geschehen.\n11.7 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:47Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "b8r"
}, {
"@id" : "http://rdfh.ch/1baf691c8403",
@@ -149,8 +390,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/1baf691c8403/values/2882816d3a26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 28.\nHolzschnitt zu Kap. 28: Vom Nörgeln an Gottes Werken.\nEin Narr, der auf einem Berg ein Feuer entfacht hat, hält seine Hand schützend über die Augen, während er seinen Blick auf die hell am Himmel strahlende Sonne richtet. 11.7 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:44Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "e7r"
}, {
"@id" : "http://rdfh.ch/1d0af69dc403",
@@ -158,8 +414,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/1d0af69dc403/values/4e9dc2b53326",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 18.\nHolzschnitt zu Kap. 18: Vom Dienst an zwei Herren.\nEin mit Spiess bewaffneter Narr bläst in ein Horn. Sein Hund versucht derweil im Hintergrund zwei Hasen gleichzeitig zu erjagen, 11.6 x 8.4 cm.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:47Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "d5r"
}, {
"@id" : "http://rdfh.ch/1fa07c90ca03",
@@ -167,8 +438,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/1fa07c90ca03/values/c623c1aa3c26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 31.\nHolzschnitt zu Kap. 31: Vom Hinausschieben auf morgen.\nEin Narr steht mit ausgebreiteten Armen auf einer Strasse. Auf seinen Händen sitzen zwei Raben, die beide „Cras“ – das lateinische Wort für „morgen“ – rufen. Auf dem Kopf des Narren sitzt ein Papagei und ahmt den Ruf der Krähen nach, 11.6 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:48Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "f2r"
}, {
"@id" : "http://rdfh.ch/1fdb76019003",
@@ -176,8 +462,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/1fdb76019003/values/118a3f426d26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 57.\nHolzschnitt zu Kap. 57: Von der Gnadenwahl Gottes.\nEin Narr, der auf einem Krebs reitet, stützt sich auf ein brechendes Schildrohr, das ihm die Hand durchbohrt. Ein Vogel fliegt auf den offenen Mund des Narren zu.\n11.6 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:45Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "i1r"
}, {
"@id" : "http://rdfh.ch/21360383d003",
@@ -185,8 +486,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/21360383d003/values/b630be944e26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 45.\nHolzschnitt zu Kap. 45: Von selbstverschuldetem Unglück.\nIn Gestalt eines Narren springt Empedokles in den lodernden Krater des Ätna. Im Vordergrund lässt sich ein anderer Narr in einen Brunnen fallen. Beide werden von drei Männern beobachtet, die das Verhalten mit „Jn geschicht recht“ kommentieren, 11.7 x 8.3 cm.\n"
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:48Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "g7r"
}, {
"@id" : "http://rdfh.ch/2171fdf39503",
@@ -194,8 +510,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/2171fdf39503/values/59740ba27226",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 68.\nHolzschnitt zu Kap. 68: Keinen Scherz verstehen.\nEin Kind, das auf einem Steckenpferd reitet und mit einem Stock als Gerte umher fuchtelt, wird von einem Narren am rechten Rand ausgeschimpft. Ein anderer Narr, der neben dem Kind steht, ist dabei, sein Schwert aus der Scheide zu ziehen.\n11.7 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:45Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "k6r"
}, {
"@id" : "http://rdfh.ch/230784e69b03",
@@ -203,8 +534,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/230784e69b03/values/4ba763247b26",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 83.\nneuer Holzschitt (nicht in Lemmer 1979): Vor einer Häuserkulisse kniet ein Narr mit einem Beutel in der Linken und zwei Keulen in der Rechten vor einem Mann mit Hut und einem jüngeren Begleiter, 11.6 x 8.6 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:45Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "m3r"
}, {
"@id" : "http://rdfh.ch/23427e576103",
@@ -212,8 +558,23 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/23427e576103/values/c32d62198426",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 96.\nHolzschnitt zu Kap. 96: Schenken und hinterdrein bereuen.\nEin Narr, der vor einem Haus steht, überreicht einem bärtigen Alten ein Geschenk, kratzt sich dabei aber unschlüssig am Kopf.\n11.6 x 8.3 cm.\nUnkoloriert.\nOben rechts Blattnummerierung (Graphitstift): \"128\"."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:42Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "q8r"
}, {
"@id" : "http://rdfh.ch/23cc8975d603",
@@ -221,14 +582,30 @@
"incunabula:description" : {
"@id" : "http://rdfh.ch/23cc8975d603/values/a63dbb7e6026",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/b83acc5f05"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser",
"knora-api:valueAsString" : "Beginn Kapitel 60.\nHolzschnitt zu Kap. 60: Von Selbstgefälligkeit.\nEin alter Narr steht am Ofen und rührt in einem Topf. Gleichzeitig schaut er sich dabei in einem Handspiegel an.\n11.7 x 8.5 cm."
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0803"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/91e19f1e01"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-03-02T15:05:48Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "i4r"
} ],
"@context" : {
"rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
- "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
"knora-api" : "http://api.knora.org/ontology/knora-api/v2#",
- "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#"
+ "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
+ "incunabula" : "http://0.0.0.0:3333/ontology/0803/incunabula/v2#",
+ "xsd" : "http://www.w3.org/2001/XMLSchema#"
}
}
diff --git a/src/app/model/test-data/resources/Testthing.json b/src/app/model/test-data/resources/Testthing.json
index bbb053ef..eff08a04 100644
--- a/src/app/model/test-data/resources/Testthing.json
+++ b/src/app/model/test-data/resources/Testthing.json
@@ -1,19 +1,31 @@
+
{
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw",
"@type" : "anything:Thing",
"anything:hasBoolean" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/IN4R19yYR0ygi3K2VEHpUQ",
"@type" : "knora-api:BooleanValue",
- "knora-api:booleanValueAsBoolean" : true
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:booleanValueAsBoolean" : true,
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser"
},
"anything:hasColor" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/TAziKNP8QxuyhC4Qf9-b6w",
"@type" : "knora-api:ColorValue",
- "knora-api:colorValueAsColor" : "#ff3333"
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:colorValueAsColor" : "#ff3333",
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser"
},
"anything:hasDate" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/-rG4F5FTTu2iB5mTBPVn5Q",
"@type" : "knora-api:DateValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
"knora-api:dateValueHasCalendar" : "GREGORIAN",
"knora-api:dateValueHasEndDay" : 13,
"knora-api:dateValueHasEndEra" : "CE",
@@ -23,27 +35,53 @@
"knora-api:dateValueHasStartEra" : "CE",
"knora-api:dateValueHasStartMonth" : 5,
"knora-api:dateValueHasStartYear" : 2018,
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : "GREGORIAN:2018-05-13 CE"
},
"anything:hasDecimal" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/bXMwnrHvQH2DMjOFrGmNzg",
"@type" : "knora-api:DecimalValue",
- "knora-api:decimalValueAsDecimal" : "1.5"
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:decimalValueAsDecimal" : {
+ "@type" : "xsd:decimal",
+ "@value" : "1.5"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser"
},
"anything:hasInteger" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/dJ1ES8QTQNepFKF5-EAqdg",
"@type" : "knora-api:IntValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:intValueAsInt" : 1
},
"anything:hasInterval" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/RbDKPKHWTC-0lkRKae-E6A",
"@type" : "knora-api:IntervalValue",
- "knora-api:intervalValueHasEnd" : "216000",
- "knora-api:intervalValueHasStart" : "0"
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "knora-api:intervalValueHasEnd" : {
+ "@type" : "xsd:decimal",
+ "@value" : "216000"
+ },
+ "knora-api:intervalValueHasStart" : {
+ "@type" : "xsd:decimal",
+ "@value" : "0"
+ }
},
"anything:hasListItem" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/XAhEeE3kSVqM4JPGdLt4Ew",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0001/treeList01"
},
@@ -52,6 +90,10 @@
"anything:hasOtherListItem" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/j8VQjbD0RsyxpyuvfFJCDA",
"@type" : "knora-api:ListValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:listValueAsListNode" : {
"@id" : "http://rdfh.ch/lists/0001/otherTreeList01"
},
@@ -60,33 +102,75 @@
"anything:hasOtherThingValue" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/uvRVxzL1RD-t9VIQ1TpfUw",
"@type" : "knora-api:LinkValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:linkValueHasTarget" : {
"@id" : "http://rdfh.ch/0001/0C-0L1kORryKzJAJxxRyRQ",
"@type" : "anything:Thing",
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0001"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/9XBCrDV3SRa7kS1WwynB4Q"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2016-10-17T17:16:04.916Z"
+ },
+ "knora-api:hasPermissions" : "V knora-base:UnknownUser|M knora-base:ProjectMember",
"rdfs:label" : "Sierra"
}
},
"anything:hasRichtext" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/rvB4eQ5MTF-Qxq0YgkwaDg",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:textValueAsXml" : "\ntest with markup
",
"knora-api:textValueHasMapping" : "http://rdfh.ch/standoff/mappings/StandardMapping"
},
"anything:hasText" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/SZyeLLmOTcCCuS3B0VksHQ",
"@type" : "knora-api:TextValue",
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"knora-api:valueAsString" : "test"
},
"anything:hasUri" : {
"@id" : "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/uBAmWuRhR-eo1u1eP7qqNg",
"@type" : "knora-api:UriValue",
- "knora-api:uriValueAsUri" : "http://www.google.ch"
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
+ "knora-api:uriValueAsUri" : {
+ "@type" : "xsd:anyURI",
+ "@value" : "http://www.google.ch"
+ }
},
+ "knora-api:attachedToProject" : {
+ "@id" : "http://rdfh.ch/projects/0001"
+ },
+ "knora-api:attachedToUser" : {
+ "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ"
+ },
+ "knora-api:creationDate" : {
+ "@type" : "xsd:dateTimeStamp",
+ "@value" : "2018-05-28T15:52:03.897Z"
+ },
+ "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser",
"rdfs:label" : "testding",
"@context" : {
"rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
- "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
"knora-api" : "http://api.knora.org/ontology/knora-api/v2#",
+ "rdfs" : "http://www.w3.org/2000/01/rdf-schema#",
+ "xsd" : "http://www.w3.org/2001/XMLSchema#",
"anything" : "http://0.0.0.0:3333/ontology/0001/anything/v2#"
}
}
diff --git a/src/app/model/webapi/knora/v2/convert-jsonld.spec.ts b/src/app/model/webapi/knora/v2/convert-jsonld.spec.ts
index b5f1925c..b65c33db 100644
--- a/src/app/model/webapi/knora/v2/convert-jsonld.spec.ts
+++ b/src/app/model/webapi/knora/v2/convert-jsonld.spec.ts
@@ -31,7 +31,7 @@ describe('ConvertJSONLD', () => {
const expectedProps: ReadProperties = {
'http://0.0.0.0:3333/ontology/0801/beol/v2#creationDate': [
new ReadDateValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/w3ZlkuU2T0-0DMrvW8HLJA',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/hg4D_yctTweaZ9vtCkDqnw',
'http://0.0.0.0:3333/ontology/0801/beol/v2#creationDate',
'GREGORIAN',
1756,
@@ -45,11 +45,11 @@ describe('ConvertJSONLD', () => {
)],
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasAuthorValue': [
new ReadLinkValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/-dzjDkhPRzy-9q0v7QtI7w',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/dt3rgRFjTh-bG_kJPdV2Eg',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasAuthorValue',
- 'http://rdfh.ch/biblio/QNWEqmjxQ9W-_hTwKlKP-Q',
+ 'http://rdfh.ch/0802/Vcd2vupmRuOserhk03c7Vw',
new ReadResource(
- 'http://rdfh.ch/biblio/QNWEqmjxQ9W-_hTwKlKP-Q',
+ 'http://rdfh.ch/0802/Vcd2vupmRuOserhk03c7Vw',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Leonhard Euler',
[],
@@ -62,11 +62,11 @@ describe('ConvertJSONLD', () => {
],
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasRecipientValue': [
new ReadLinkValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/gkdrd8ZXQhucrNLXIf2-qw',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/2YYzj2uGTzeaKze3vScqRA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasRecipientValue',
- 'http://rdfh.ch/biblio/Yv2elBDtSMqoJeKRcxsW8A',
+ 'http://rdfh.ch/0802/shubb5TjTnu84MqkM6uHlA',
new ReadResource(
- 'http://rdfh.ch/biblio/Yv2elBDtSMqoJeKRcxsW8A',
+ 'http://rdfh.ch/0802/shubb5TjTnu84MqkM6uHlA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Christian Goldbach',
[],
@@ -79,37 +79,37 @@ describe('ConvertJSONLD', () => {
],
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasSubject': [
new ReadListValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/JpGklfqZSxuu7VI1zIyucw',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/eoyTM9yqT3maAV704FNZoQ',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasSubject',
'http://rdfh.ch/lists/0801/other_quadratic_forms',
'Other quadratic forms'
),
new ReadListValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/SiEBL-EASQSNeFBprbjY3A',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/wKbQ86WkRtSOyQomLN3-GA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasSubject',
'http://rdfh.ch/lists/0801/berlin_academy',
'Berlin Academy'
),
new ReadListValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/H4IZDQ1eS2WBrMhZRX-vkA',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/NvANUAjVQXusdezLDIHlNg',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasSubject',
'http://rdfh.ch/lists/0801/other_professional_tasks',
'Other professional tasks'
),
new ReadListValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/MdjXlOTNRfqYKEWNIh6kfg',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/q67xf4J3RKe4Y_wNYyVanQ',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasSubject',
'http://rdfh.ch/lists/0801/errands',
'Errands'
),
new ReadListValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/rfao0tqnQTiYyLdlJrNF6w',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/PePWR2aVSueUZAvryhM8RQ',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasSubject',
'http://rdfh.ch/lists/0801/book_trade_orders',
'Book trade, orders'
),
new ReadListValue(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/_fCIiKjzRYqjXkEhykto5A',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/NoeWmFy1TVyA0CGDTPVCsA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasSubject',
'http://rdfh.ch/lists/0801/johann_albrecht_euler',
'Johann Albrecht Euler'
@@ -117,19 +117,19 @@ describe('ConvertJSONLD', () => {
],
'http://0.0.0.0:3333/ontology/0801/beol/v2#letterHasLanguage': [
new ReadTextValueAsString(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/ilKXhfZnS9uAYDNQzi6m8Q',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/I6jR1ifGQ8uy1BIT3mhgvw',
'http://0.0.0.0:3333/ontology/0801/beol/v2#letterHasLanguage',
'German'
)
],
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasText': [
new ReadTextValueAsHtml(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w/values/GJQB9IHYTl2RhG4g4ru0YA',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg/values/vnfi65mrQBue7OmI5wonvA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#hasText',
- '\n
\n \n
Hochwohlgebohrner Herr
\n \n
Hochgeehrtester Herr Etats Rath\n
\n \n
Bey dem Antritt dieses neuen Jahrs lege ich zuvorderst meinen herzlichsten Wunsch\n für das beständige Wohlseyn Eur. Hochwohlgeb. ab, und empfehle mich dabey gehorsamst\n sammt den meinigen zu Dero fortdaurenden Wohlgewogenheit\\(\\,.\\,\\) Zugleich statte ich auch Eur. Hochwohlgeb. meine verpflichtetste Danksagung ab für\n den gütigen Antheil welchen Dieselben an unserem Zustand zu nehmen belieben und habe\n das Vergnügen Eur. Hochwohlgeb. zu berichten, daß S[ein]\\(\\,{}^{\\text{e}}\\,\\) Königl[iche] Majestät bey dem Anfang dieses Jahrs Dero Pathen unsern ältesten Sohn mit einer jährlichen\n Besoldung von \\(\\,200\\,\\) Rthl. begnadiget.1
\n \n
Ich habe nun schon eine geraume Zeit so viel andere Geschäfte gehabt daß ich an numerische Theoremata, dergleichen ich Eur. Hochwohlgeb. das letste mal vorzulegen die Ehre gehabt, nicht\n habe denken können. Die Partes Matheseos applicatae nehmen mir die meiste Zeit weg, wo es immer mehr zu untersuchen gibt, je mehr man\n damit umgeht.2
\n \n
Weil nun mein Kopf mit so viel anderen Sachen angefüllet ist, so mag das wohl die\n Ursache seyn, daß ich mich in das von Eur. Hochwohlgeb. communicirte und nach der Hand verbesserte Theorema nicht finden kan. Vielleicht haben Eur. Hochwohlgeb. vergessen noch eine wesentliche\n Condition hinzuzusetzen.3
\n \n
Das Theorema war: Si sit\\(\\,aa+bb=P^{2}+eQ^{2}\\,\\)erit etiam
\n \n
\n \\(\\,a^{2}+\\left(\\left(2e+1\\right)b-eP-eQ\\right)^{2}=M^{2}+eN^{2}\\text{;}\\,\\)\n \n
\n \n
weil ich den Grund desselben nicht einsehen konnte, so habe ich die Richtigkeit desselben\n durch Exempel erforschen wollen.\n
\n \n
I. Da \\(\\,1^{2}+4^{2}=17=3^{2}+2\\cdot 2^{2}\\,\\), so ist \\(\\,a=1\\,\\), \\(\\,b=4\\,\\), \\(\\,P=3\\,\\), \\(\\,Q=2\\,\\) und \\(\\,e=2\\,\\), allso müste seyn\n
\n \n
\n \\(\\,1^{2}+\\left(5\\cdot 4-2\\cdot 3-2\\cdot 2\\right)^{2}=1^{2}+10^{2}=101=M^{2}+2N^{2}\\,\\)\n \n
\n \n
welches unmöglich ist.
\n \n
II. Da \\(\\,9^{2}+4^{2}=97=7^{2}+3\\cdot 4^{2}\\,\\), so ist \\(\\,a=9\\,\\); \\(\\,b=4\\,\\); \\(\\,P=7\\,\\); \\(\\,Q=4\\,\\) und \\(\\,e=3\\,\\), allso müsste seyn\n
\n \n
\n \\(\\,9^{2}+\\left(7\\cdot 4-3\\cdot 7-3\\cdot 4\\right)^{2}=9^{2}+5^{2}=106=M^{2}+3N^{2}\\,\\)\n \n
\n \n
welches ebenfalls unmöglich ist.
\n \n
Da ich nun nicht einmal ein Exempel finden kan, welches einträfe, so schliesse ich daraus, daß eine gewisse Bedingung\n in den Zahlen \\(\\,a\\,\\), \\(\\,b\\,\\), \\(\\,P\\,\\) und \\(\\,Q\\,\\) müsse weggelassen seyn, welche ich aber nicht ausfündig machen kan.4
\n \n
Ich habe dem H. Spener zu wissen gethan, daß Eur. Hochwohlgeb. die Rechnung für die überschickten Bücher\n verlangen; bekomme ich dieselbe vor Schliessung dieses Briefs, wie ich ihm habe sagen\n lassen, so werde ich sie beylegen.5
\n \n
Sonsten da er nicht alle verlangte Bücher gehabt, so werde ich inskünftige dergleichen\n Commissionen dem M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme, welcher weit activer ist und alles schaffen kan, auftragen. Wegen des Werks: La Clef du Cabinet des Princes füge hier die Antwort des M.\\(\\,{}^{\\text{r}}\\,\\)de Bourdeaux bey.6
\n \n
Sollte dasselbe vor der Ankunft einer Resolution von Eur. Hochwohlgeb. schon verkauft worden seyn, so hat sich M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme anheischig gemacht, dasselbe auch zu liefern.\n
\n \n
Ich habe die Ehre mit der schuldigsten Hochachtung zu verharren
\n \n
Eur. Hochwohlgebohrnen
\n \n
gehorsamster Diener
\n \n
\n L. Euler\n \n
\n \n
Berlin den 3\\(\\,{}^{\\text{ten}}\\,\\)Januarii
\n \n
1756.
\n \n
\n Berlin, January 3rd, 1756\n \n
\n \n
\n Original, 1 fol. – RGADA, f. 181, n. 1413, č. V, fol. 123rv\n \n
\n \n
\n Published: Correspondance (1843), t. I, p. 636–637; Euler-Goldbach (1965), p. 385–386\n \n
\n \n
\n
\n
',
+ '\n
\n \n
Hochwohlgebohrner Herr
\n \n
Hochgeehrtester Herr Etats Rath\n
\n \n
Bey dem Antritt dieses neuen Jahrs lege ich zuvorderst meinen herzlichsten Wunsch\n für das beständige Wohlseyn Eur. Hochwohlgeb. ab, und empfehle mich dabey gehorsamst\n sammt den meinigen zu Dero fortdaurenden Wohlgewogenheit\\(\\,.\\,\\) Zugleich statte ich auch Eur. Hochwohlgeb. meine verpflichtetste Danksagung ab für\n den gütigen Antheil welchen Dieselben an unserem Zustand zu nehmen belieben und habe\n das Vergnügen Eur. Hochwohlgeb. zu berichten, daß S[ein]\\(\\,{}^{\\text{e}}\\,\\) Königl[iche] Majestät bey dem Anfang dieses Jahrs Dero Pathen unsern ältesten Sohn mit einer jährlichen\n Besoldung von \\(\\,200\\,\\) Rthl. begnadiget.1
\n \n
Ich habe nun schon eine geraume Zeit so viel andere Geschäfte gehabt daß ich an numerische Theoremata, dergleichen ich Eur. Hochwohlgeb. das letste mal vorzulegen die Ehre gehabt, nicht\n habe denken können. Die Partes Matheseos applicatae nehmen mir die meiste Zeit weg, wo es immer mehr zu untersuchen gibt, je mehr man\n damit umgeht.2
\n \n
Weil nun mein Kopf mit so viel anderen Sachen angefüllet ist, so mag das wohl die\n Ursache seyn, daß ich mich in das von Eur. Hochwohlgeb. communicirte und nach der Hand verbesserte Theorema nicht finden kan. Vielleicht haben Eur. Hochwohlgeb. vergessen noch eine wesentliche\n Condition hinzuzusetzen.3
\n \n
Das Theorema war: Si sit\\(\\,aa+bb=P^{2}+eQ^{2}\\,\\)erit etiam
\n \n
\n \\(\\,a^{2}+\\left(\\left(2e+1\\right)b-eP-eQ\\right)^{2}=M^{2}+eN^{2}\\text{;}\\,\\)\n \n
\n \n
weil ich den Grund desselben nicht einsehen konnte, so habe ich die Richtigkeit desselben\n durch Exempel erforschen wollen.\n
\n \n
I. Da \\(\\,1^{2}+4^{2}=17=3^{2}+2\\cdot 2^{2}\\,\\), so ist \\(\\,a=1\\,\\), \\(\\,b=4\\,\\), \\(\\,P=3\\,\\), \\(\\,Q=2\\,\\) und \\(\\,e=2\\,\\), allso müste seyn\n
\n \n
\n \\(\\,1^{2}+\\left(5\\cdot 4-2\\cdot 3-2\\cdot 2\\right)^{2}=1^{2}+10^{2}=101=M^{2}+2N^{2}\\,\\)\n \n
\n \n
welches unmöglich ist.
\n \n
II. Da \\(\\,9^{2}+4^{2}=97=7^{2}+3\\cdot 4^{2}\\,\\), so ist \\(\\,a=9\\,\\); \\(\\,b=4\\,\\); \\(\\,P=7\\,\\); \\(\\,Q=4\\,\\) und \\(\\,e=3\\,\\), allso müsste seyn\n
\n \n
\n \\(\\,9^{2}+\\left(7\\cdot 4-3\\cdot 7-3\\cdot 4\\right)^{2}=9^{2}+5^{2}=106=M^{2}+3N^{2}\\,\\)\n \n
\n \n
welches ebenfalls unmöglich ist.
\n \n
Da ich nun nicht einmal ein Exempel finden kan, welches einträfe, so schliesse ich daraus, daß eine gewisse Bedingung\n in den Zahlen \\(\\,a\\,\\), \\(\\,b\\,\\), \\(\\,P\\,\\) und \\(\\,Q\\,\\) müsse weggelassen seyn, welche ich aber nicht ausfündig machen kan.4
\n \n
Ich habe dem H. Spener zu wissen gethan, daß Eur. Hochwohlgeb. die Rechnung für die überschickten Bücher\n verlangen; bekomme ich dieselbe vor Schliessung dieses Briefs, wie ich ihm habe sagen\n lassen, so werde ich sie beylegen.5
\n \n
Sonsten da er nicht alle verlangte Bücher gehabt, so werde ich inskünftige dergleichen\n Commissionen dem M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme, welcher weit activer ist und alles schaffen kan, auftragen. Wegen des Werks: La Clef du Cabinet des Princes füge hier die Antwort des M.\\(\\,{}^{\\text{r}}\\,\\)de Bourdeaux bey.6
\n \n
Sollte dasselbe vor der Ankunft einer Resolution von Eur. Hochwohlgeb. schon verkauft worden seyn, so hat sich M.\\(\\,{}^{\\text{r}}\\,\\)Neaulme anheischig gemacht, dasselbe auch zu liefern.\n
\n \n
Ich habe die Ehre mit der schuldigsten Hochachtung zu verharren
\n \n
Eur. Hochwohlgebohrnen
\n \n
gehorsamster Diener
\n \n
\n L. Euler\n \n
\n \n
Berlin den 3\\(\\,{}^{\\text{ten}}\\,\\)Januarii
\n \n
1756.
\n \n
\n Berlin, January 3rd, 1756\n \n
\n \n
\n Original, 1 fol. – RGADA, f. 181, n. 1413, č. V, fol. 123rv\n \n
\n \n
\n Published: Correspondance (1843), t. I, p. 636–637; Euler-Goldbach (1965), p. 385–386\n \n
\n \n
\n
\n
',
{
- 'http://rdfh.ch/0801/beol/08Y_rCK5QM-gvchjtixomw': new ReadResource(
- 'http://rdfh.ch/0801/beol/08Y_rCK5QM-gvchjtixomw',
+ 'http://rdfh.ch/0801/f-2Ta0NRSBikdqXivSLuMw': new ReadResource(
+ 'http://rdfh.ch/0801/f-2Ta0NRSBikdqXivSLuMw',
'http://0.0.0.0:3333/ontology/0801/beol/v2#endnote',
'L176 note-5',
[],
@@ -138,8 +138,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/0801/beol/FJCOlKBdRtW8caqnN4A3Vw': new ReadResource(
- 'http://rdfh.ch/0801/beol/FJCOlKBdRtW8caqnN4A3Vw',
+ 'http://rdfh.ch/0801/_vmiVEfoSw-BA2_Ppz2nPQ': new ReadResource(
+ 'http://rdfh.ch/0801/_vmiVEfoSw-BA2_Ppz2nPQ',
'http://0.0.0.0:3333/ontology/0801/beol/v2#endnote',
'L176 note-3',
[],
@@ -148,8 +148,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/0801/beol/KvfXRPkXTziMYMVYSz9tBg': new ReadResource(
- 'http://rdfh.ch/0801/beol/KvfXRPkXTziMYMVYSz9tBg',
+ 'http://rdfh.ch/0801/0m02gFutQ7yEt559a2uOlg': new ReadResource(
+ 'http://rdfh.ch/0801/0m02gFutQ7yEt559a2uOlg',
'http://0.0.0.0:3333/ontology/0801/beol/v2#endnote',
'L176 note-2',
[],
@@ -158,8 +158,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/0801/beol/kZeMXLrQTQONISqizXtf5g': new ReadResource(
- 'http://rdfh.ch/0801/beol/kZeMXLrQTQONISqizXtf5g',
+ 'http://rdfh.ch/0801/sd6JbWUlTvig8vWIqZy6-Q': new ReadResource(
+ 'http://rdfh.ch/0801/sd6JbWUlTvig8vWIqZy6-Q',
'http://0.0.0.0:3333/ontology/0801/beol/v2#endnote',
'L176 note-4',
[],
@@ -168,8 +168,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/0801/beol/nRO3f9ENSsqTH8S0Z1uO9w': new ReadResource(
- 'http://rdfh.ch/0801/beol/nRO3f9ENSsqTH8S0Z1uO9w',
+ 'http://rdfh.ch/0801/2BZx-h5vTcCXaqxaSXjoXA': new ReadResource(
+ 'http://rdfh.ch/0801/2BZx-h5vTcCXaqxaSXjoXA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#endnote',
'L176 note-6',
[],
@@ -178,8 +178,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/0801/beol/spy5H95GTV2RElphXFPbbw': new ReadResource(
- 'http://rdfh.ch/0801/beol/spy5H95GTV2RElphXFPbbw',
+ 'http://rdfh.ch/0801/KPOPzTVLSdyxiScitUAyTQ': new ReadResource(
+ 'http://rdfh.ch/0801/KPOPzTVLSdyxiScitUAyTQ',
'http://0.0.0.0:3333/ontology/0801/beol/v2#endnote',
'L176 note-1',
[],
@@ -188,8 +188,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/biblio/DhgjcrRhRfunaSt77-bUxg': new ReadResource(
- 'http://rdfh.ch/biblio/DhgjcrRhRfunaSt77-bUxg',
+ 'http://rdfh.ch/0802/BqZGx2KmRS2mIMK_DUxapg': new ReadResource(
+ 'http://rdfh.ch/0802/BqZGx2KmRS2mIMK_DUxapg',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Friedrich II.',
[],
@@ -198,8 +198,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/biblio/FsJNrctNTMuwJPCX-7OTVg': new ReadResource(
- 'http://rdfh.ch/biblio/FsJNrctNTMuwJPCX-7OTVg',
+ 'http://rdfh.ch/0802/UWsNivv1R46modSygvjOLA': new ReadResource(
+ 'http://rdfh.ch/0802/UWsNivv1R46modSygvjOLA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Jean Neaulme',
[],
@@ -208,8 +208,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/biblio/Z_-TT-8_QNSRv-O7dKCW0w': new ReadResource(
- 'http://rdfh.ch/biblio/Z_-TT-8_QNSRv-O7dKCW0w',
+ 'http://rdfh.ch/0802/CKzU513NSWyVhwe0gpbMWg': new ReadResource(
+ 'http://rdfh.ch/0802/CKzU513NSWyVhwe0gpbMWg',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Johann Carl (the Elder) Spener',
[],
@@ -218,8 +218,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/biblio/bP1CO3j3TCOUHYdQqKw9pA': new ReadResource(
- 'http://rdfh.ch/biblio/bP1CO3j3TCOUHYdQqKw9pA',
+ 'http://rdfh.ch/0802/shgx0f71R66N_noFNc3gkg': new ReadResource(
+ 'http://rdfh.ch/0802/shgx0f71R66N_noFNc3gkg',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Johann Albrecht Euler',
[],
@@ -228,18 +228,18 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/biblio/sAImr-uGRBGpsdBdoI6XCw': new ReadResource(
- 'http://rdfh.ch/biblio/sAImr-uGRBGpsdBdoI6XCw',
+ 'http://rdfh.ch/0802/iJK4gffNTW-18RsNf8JLbA': new ReadResource(
+ 'http://rdfh.ch/0802/iJK4gffNTW-18RsNf8JLbA',
'http://0.0.0.0:3333/ontology/0802/biblio/v2#Book',
- 'jordanclbhae',
+ 'Jordancl 1704',
[],
[],
[],
[],
{}
),
- 'http://rdfh.ch/biblio/up0Q0ZzPSLaULC2tlTs1sA': new ReadResource(
- 'http://rdfh.ch/biblio/up0Q0ZzPSLaULC2tlTs1sA',
+ 'http://rdfh.ch/0802/Hju9FefOQ5KgnXUHnYqUVA': new ReadResource(
+ 'http://rdfh.ch/0802/Hju9FefOQ5KgnXUHnYqUVA',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Claude Jordan',
[],
@@ -248,8 +248,8 @@ describe('ConvertJSONLD', () => {
[],
{}
),
- 'http://rdfh.ch/biblio/vR3fWAXxRqShBZvWKVA9tA': new ReadResource(
- 'http://rdfh.ch/biblio/vR3fWAXxRqShBZvWKVA9tA',
+ 'http://rdfh.ch/0802/6dLVf6BjRPCmndIwhFZLEw': new ReadResource(
+ 'http://rdfh.ch/0802/6dLVf6BjRPCmndIwhFZLEw',
'http://0.0.0.0:3333/ontology/0801/beol/v2#person',
'Etienne de Bourdeaux',
[],
@@ -264,9 +264,9 @@ describe('ConvertJSONLD', () => {
};
const EulerLetterResourceExpected = new ReadResource(
- 'http://rdfh.ch/0801/beol/-0tI3HXgSSOeDtkf-SA00w',
+ 'http://rdfh.ch/0801/j4BrggcKS0CltUf1Ssl9Jg',
'http://0.0.0.0:3333/ontology/0801/beol/v2#letter',
- 'L176-O',
+ 'L176 Original',
[],
[],
[],
diff --git a/src/app/model/webapi/knora/v2/convert-jsonld.ts b/src/app/model/webapi/knora/v2/convert-jsonld.ts
index 95a28ba5..a003d039 100644
--- a/src/app/model/webapi/knora/v2/convert-jsonld.ts
+++ b/src/app/model/webapi/knora/v2/convert-jsonld.ts
@@ -38,11 +38,18 @@ let jsonld = require('jsonld');
export module ConvertJSONLD {
+ /**
+ * Gets property names and filters out all non property names.
+ * Gets all members that have to be treated as value objects.
+ */
+ const getPropertyNames = (propName) => {
+ return propName !== '@id' && propName !== '@type' && propName !== AppConfig.RdfsLabel && propName !== AppConfig.attachedToProject && propName !== AppConfig.attachedToUser && propName !== AppConfig.creationDate && propName !== AppConfig.lastModificationDate && propName !== AppConfig.hasPermissions;
+ };
+
/**
* Construct a [[ReadResource]] from JSON-LD.
*
* @param resourceJSONLD an object describing the resource and its properties.
- * @param properties a [[ReadProperties]] describing the resource's properties. if any.
* @returns a [[ReadResource]]
*/
function constructReadResource(resourceJSONLD: Object): ReadResource {
@@ -165,7 +172,7 @@ export module ConvertJSONLD {
case AppConfig.DecimalValue:
// a decimal value is represented as a string in order to preserve its precision
- const decVal: number = parseFloat(propValue[AppConfig.decimalValueAsDecimal]);
+ const decVal: number = parseFloat(propValue[AppConfig.decimalValueAsDecimal]['@value']);
let decimalValue = new ReadDecimalValue(propValue['@id'], propIri, decVal);
valueSpecificProp = decimalValue;
@@ -231,7 +238,7 @@ export module ConvertJSONLD {
let uriValue: ReadUriValue = new ReadUriValue(
propValue['@id'],
propIri,
- propValue[AppConfig.uriValueAsUri]
+ propValue[AppConfig.uriValueAsUri]['@value']
);
valueSpecificProp = uriValue;
@@ -254,8 +261,8 @@ export module ConvertJSONLD {
case AppConfig.IntervalValue:
// represented as strings to preserve precision
- const intStart = parseFloat(propValue[AppConfig.intervalValueHasStart]);
- const intEnd = parseFloat(propValue[AppConfig.intervalValueHasEnd]);
+ const intStart = parseFloat(propValue[AppConfig.intervalValueHasStart]['@value']);
+ const intEnd = parseFloat(propValue[AppConfig.intervalValueHasEnd]['@value']);
let intervalValue: ReadIntervalValue = new ReadIntervalValue(
propValue['@id'],
@@ -295,7 +302,6 @@ export module ConvertJSONLD {
* Construct a [[ReadProperties]] from JSON-LD.
*
* @param resourceJSONLD an object describing the resource and its properties.
- * @param standoffLinksValues standoff link values of the resource.
* @returns a [[ReadProperties]].
*/
function constructReadProperties(resourceJSONLD: Object): ReadProperties {
@@ -322,7 +328,7 @@ export module ConvertJSONLD {
let propNames = Object.keys(resourceJSONLD);
// filter out everything that is not a Knora property name
- propNames = propNames.filter(propName => propName != '@id' && propName != '@type' && propName != AppConfig.RdfsLabel);
+ propNames = propNames.filter(getPropertyNames);
let properties: ReadProperties = {};
@@ -417,7 +423,7 @@ export module ConvertJSONLD {
let propNames = Object.keys(resourceJSONLD);
// filter out everything that is not a Knora property name
- propNames = propNames.filter(propName => propName != '@id' && propName != '@type' && propName != AppConfig.RdfsLabel);
+ propNames = propNames.filter(getPropertyNames);
let referredResourceClasses = [];