diff --git a/README.md b/README.md index 08168a31c..fee6f04f8 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,15 @@ This is the demo and developing environment for Knora ui modules. -The modules helps to create a graphical user interface for [Knora](https://knora.org) in a quick and simple way. They're written in [Angular](https://angular.io) (v6) including the [material design](https://material.angular.io). +The modules help to create a graphical user interface for [Knora](https://knora.org) in a quick and simple way. They're written in [Angular](https://angular.io) (v6) including the [material design](https://material.angular.io). Knora itself is a software framework for storing, sharing, and working with primary sources and data in the humanities. It is developed by the [Digital Humanities Lab](http://dhlab.unibas.ch/) at the [University of Basel](https://unibas.ch/en.html), and is supported by the [Swiss Academy of Humanities and Social Sciences](http://www.sagw.ch/en/sagw.html). -Knora and the Knora ui elements is [free software](http://www.gnu.org/philosophy/free-sw.en.html), released under the [GNU Affero General Public License](http://www.gnu.org/licenses/agpl-3.0.en.html). +Knora and the Knora ui elements are [free software](http://www.gnu.org/philosophy/free-sw.en.html), released under the [GNU Affero General Public License](http://www.gnu.org/licenses/agpl-3.0.en.html). + +This version of Knora-ui requires Knora v2.2.0-snapshot (pre-release) or later. ## Already published modules @@ -180,3 +182,7 @@ If an inner observable does not complete forkJoin will never emit a value! https://www.learnrxjs.io/operators/combination/forkjoin.html > This is why the subscription never worked, because we did not flush all necessary responses. --> + +## Required version of Knora + +3.0.0 or later diff --git a/projects/knora/core/src/lib/declarations/api/knora-constants.ts b/projects/knora/core/src/lib/declarations/api/knora-constants.ts index 4cb294813..1cb45df8a 100644 --- a/projects/knora/core/src/lib/declarations/api/knora-constants.ts +++ b/projects/knora/core/src/lib/declarations/api/knora-constants.ts @@ -104,7 +104,7 @@ export class KnoraConstants { public static textValueAsHtml: string = KnoraConstants.KnoraApiV2WithValueObjectPath + 'textValueAsHtml'; public static textValueAsXml: string = KnoraConstants.KnoraApiV2WithValueObjectPath + 'textValueAsXml'; - public static textValueHasMapping: string = KnoraConstants.KnoraApiV2WithValueObjectPath + 'textValueHasMapping'; + public static textValueHasMapping = KnoraConstants.KnoraApiV2WithValueObjectPath + 'textValueHasMapping'; public static hasStandoffLinkToValue: string = KnoraConstants.KnoraApiV2WithValueObjectPath + 'hasStandoffLinkToValue'; diff --git a/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.spec.ts b/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.spec.ts index 1c6997a4e..07e639d2b 100644 --- a/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.spec.ts +++ b/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.spec.ts @@ -236,27 +236,26 @@ describe('ReadPropertyItem', () => { const imageItem = new ReadStillImageFileValue( 'http://rdfh.ch/00c650d23303/values/af68552c3626', 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#hasImage', - 'incunabula_0000003856.jp2', + 'incunabula_0000003856.jpg', 'http://localhost:1024/knora', - 'http://localhost:1024/knora/incunabula_0000003856.jp2/full/190,270/0/default.jpg', + 'http://localhost:1024/knora/incunabula_0000003856.jpg/full/190,270/0/default.jpg', 190, - 270, - true); + 270); expect(imageItem.id).toEqual('http://rdfh.ch/00c650d23303/values/af68552c3626'); expect(imageItem.type).toEqual('http://api.knora.org/ontology/knora-api/v2#StillImageFileValue'); expect(imageItem.propIri).toEqual('http://0.0.0.0:3333/ontology/0803/incunabula/v2#hasImage'); expect(imageItem.getClassName()).toEqual('ReadStillImageFileValue'); - expect(imageItem.getContent()).toEqual('http://localhost:1024/knora/incunabula_0000003856.jp2/full/190,270/0/default.jpg'); + expect(imageItem.getContent()).toEqual('http://localhost:1024/knora/incunabula_0000003856.jpg/full/190,270/0/default.jpg'); - expect(imageItem.imageFilename).toEqual('incunabula_0000003856.jp2'); + expect(imageItem.imageFilename).toEqual('incunabula_0000003856.jpg'); expect(imageItem.imageServerIIIFBaseURL).toEqual('http://localhost:1024/knora'); - expect(imageItem.imagePath).toEqual('http://localhost:1024/knora/incunabula_0000003856.jp2/full/190,270/0/default.jpg'); + expect(imageItem.imagePath).toEqual('http://localhost:1024/knora/incunabula_0000003856.jpg/full/190,270/0/default.jpg'); expect(imageItem.dimX).toEqual(190); expect(imageItem.dimY).toEqual(270); expect(imageItem.isPreview).toEqual(true); - expect(imageItem.makeIIIFUrl(10)).toEqual('http://localhost:1024/knora/incunabula_0000003856.jp2/full/190,270/0/default.jpg'); + expect(imageItem.makeIIIFUrl(10)).toEqual('http://localhost:1024/knora/incunabula_0000003856.jpg/full/190,270/0/default.jpg'); }); it('should create a ReadTextFileValue', () => { diff --git a/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.ts b/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.ts index 56b67b74a..9bb65cb78 100644 --- a/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.ts +++ b/projects/knora/core/src/lib/declarations/api/v2/properties/read-property-item.ts @@ -271,10 +271,10 @@ export class ReadStillImageFileValue implements ReadPropertyItem { readonly imageServerIIIFBaseURL: string, readonly imagePath: string, readonly dimX: number, - readonly dimY: number, - isPreview?: boolean) { + readonly dimY: number) { - this.isPreview = isPreview === undefined ? false : isPreview; + // if the image is a jpeg, it is a preview image + this.isPreview = imageFilename.endsWith('.jpg'); } diff --git a/projects/knora/core/src/lib/services/v2/convert-jsonld.spec.ts b/projects/knora/core/src/lib/services/v2/convert-jsonld.spec.ts index 526f2ae49..1c5e7cd41 100644 --- a/projects/knora/core/src/lib/services/v2/convert-jsonld.spec.ts +++ b/projects/knora/core/src/lib/services/v2/convert-jsonld.spec.ts @@ -1,13 +1,34 @@ import { async } from '@angular/core/testing'; import { ConvertJSONLD } from './convert-jsonld'; import { - ReadBooleanValue, ReadColorValue, ReadDateValue, ReadDecimalValue, ReadIntegerValue, ReadIntervalValue, - ReadLinkValue, ReadListValue, ReadProperties, ReadResource, ReadResourcesSequence, ReadTextValueAsHtml, - ReadTextValueAsString, ReadTextValueAsXml, ReadUriValue + ReadBooleanValue, + ReadColorValue, + ReadDateValue, + ReadDecimalValue, + ReadIntegerValue, + ReadIntervalValue, + ReadLinkValue, + ReadListValue, + ReadProperties, + ReadResource, + ReadResourcesSequence, + ReadStillImageFileValue, + ReadTextFileValue, + ReadTextValueAsHtml, + ReadTextValueAsString, + ReadTextValueAsXml, + ReadUriValue } from '../../declarations'; + describe('ConvertJSONLD', () => { + /** + * The following tests use async() because the JSON-LD processor is involved. + * The data to check for are inside a Promise. + * See https://angular.io/guide/testing#component-with-async-service + */ + it('parse a JSON-LD document representing letter 176-O', async(() => { const jsonld = require('jsonld'); @@ -586,6 +607,138 @@ describe('ConvertJSONLD', () => { }); })); + it('parse a JSON-LD document representing a page with images', async(() => { + + const jsonld = require('jsonld'); + + // http://localhost:3333/v2/resources/http%3A%2F%2Frdfh.ch%2F00505cf0a803 + const page: any = require('../../test-data/resources/PageWithImages.json'); + + const promises = jsonld.promises; + // compact JSON-LD using an empty context: expands all Iris + const promise = promises.compact(page, {}); + + promise.then((compacted) => { + + const receivedResource: ReadResourcesSequence = ConvertJSONLD.createReadResourcesSequenceFromJsonLD(compacted); + + expect(receivedResource.numberOfResources).toEqual(1); + + const expectedProps: ReadProperties = { + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#description': [ + new ReadTextValueAsString( + 'http://rdfh.ch/00505cf0a803/values/549527258a26', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#description', + '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.' + ) + ], + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#origname': [ + new ReadTextValueAsString( + 'http://rdfh.ch/00505cf0a803/values/47da3831980e', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#origname', + 'IBB_1_002758751_0241.tif' + ) + ], + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#page_comment': [ + new ReadTextValueAsString( + 'http://rdfh.ch/00505cf0a803/values/1d9257bae428', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#page_comment', + 'Schramm, Bd. 22, Abb. 1200.' + ) + ], + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#pagenum': [ + new ReadTextValueAsString( + 'http://rdfh.ch/00505cf0a803/values/fe5c3f85970e', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#pagenum', + 'p7v' + ) + ], + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#partOfValue': [ + new ReadLinkValue('http://rdfh.ch/00505cf0a803/values/a2c239c3-eac5-4f9f-88e9-9411835d11ff', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#partOfValue', + 'http://rdfh.ch/8be1b7cf7103', + new ReadResource('http://rdfh.ch/8be1b7cf7103', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#book', + '[Das] Narrenschiff (lat.)', + [], + [], + [], + [], + {}) + ) + ], + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#seqnum': [ + new ReadIntegerValue( + 'http://rdfh.ch/00505cf0a803/values/84b0e5f7970e', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#seqnum', + 241 + ) + ], + 'http://api.knora.org/ontology/knora-api/v2#hasStillImageFileValue': [ + new ReadStillImageFileValue( + 'http://rdfh.ch/00505cf0a803/reps/9e73f9ac2307', + 'http://api.knora.org/ontology/knora-api/v2#hasStillImageFileValue', + 'incunabula_0000004096.jp2', + 'http://localhost:1024/knora', + 'http://localhost:1024/knora/incunabula_0000004096.jp2/full/1954,2630/0/default.jpg', + 1954, + 2630 + ), + new ReadStillImageFileValue( + 'http://rdfh.ch/00505cf0a803/reps/df4da6732307', + 'http://api.knora.org/ontology/knora-api/v2#hasStillImageFileValue', + 'incunabula_0000004096.jpg', + 'http://localhost:1024/knora', + 'http://localhost:1024/knora/incunabula_0000004096.jpg/full/95,128/0/default.jpg', + 95, + 128 + ) + ] + }; + + const expectedPage = new ReadResource('http://rdfh.ch/00505cf0a803', + 'http://0.0.0.0:3333/ontology/0803/incunabula/v2#page', + 'p7v', + [], + [], + [], + [], + expectedProps); + + expect(receivedResource.resources[0]).toEqual(expectedPage); + }); + + + })); + + it('parse a JSON-LD document representing text file value', async(() => { + + const jsonld = require('jsonld'); + + const textfilerepr: any = require('../../test-data/resources/TextfileRepresentation.json'); + + const promises = jsonld.promises; + // compact JSON-LD using an empty context: expands all Iris + const promise = promises.compact(textfilerepr, {}); + + promise.then((compacted) => { + + const receivedResource: ReadResourcesSequence = ConvertJSONLD.createReadResourcesSequenceFromJsonLD(compacted); + + expect(receivedResource.numberOfResources).toEqual(1); + + const expectedTextfileValue = new ReadTextFileValue( + 'http://rdfh.ch/0802/C9bbwuLORoCZZ1DVek1qCQ/values/DSQxeAI-T8eYlgXynsQWhw', + 'http://api.knora.org/ontology/knora-api/v2#hasTextFileValue', + 'LZoxQd7xyNT-EC4kgw2gokg', + 'http://localhost:1024/server/knora/LZoxQd7xyNT-EC4kgw2gokg' + ); + + expect(receivedResource.resources[0].properties['http://api.knora.org/ontology/knora-api/v2#hasTextFileValue'][0]).toEqual(expectedTextfileValue); + + }); + })); + it('parse a JSON-LD document representing a collection of resources and get the Iris of the resource classes contained in it', async(() => { const jsonld = require('jsonld'); diff --git a/projects/knora/core/src/lib/services/v2/convert-jsonld.ts b/projects/knora/core/src/lib/services/v2/convert-jsonld.ts index cb63bfc30..fa01b420a 100644 --- a/projects/knora/core/src/lib/services/v2/convert-jsonld.ts +++ b/projects/knora/core/src/lib/services/v2/convert-jsonld.ts @@ -113,9 +113,9 @@ export module ConvertJSONLD { propValue['@id'], propIri, propValue[KnoraConstants.textValueAsHtml], referredResources ); } else if ( - propValue[KnoraConstants.textValueAsXml] !== undefined && propValue[KnoraConstants.textValueHasMapping] !== undefined) { + propValue[KnoraConstants.textValueAsXml] !== undefined && propValue[KnoraConstants.textValueHasMapping]['@id'] !== undefined) { textValue = new ReadTextValueAsXml( - propValue['@id'], propIri, propValue[KnoraConstants.textValueAsXml], propValue[KnoraConstants.textValueHasMapping] + propValue['@id'], propIri, propValue[KnoraConstants.textValueAsXml], propValue[KnoraConstants.textValueHasMapping]['@id'] ); } else { // expected text value members not defined @@ -198,11 +198,10 @@ export module ConvertJSONLD { propValue['@id'], propIri, propValue[KnoraConstants.fileValueHasFilename], - propValue[KnoraConstants.stillImageFileValueHasIIIFBaseUrl], - propValue[KnoraConstants.fileValueAsUrl], + propValue[KnoraConstants.stillImageFileValueHasIIIFBaseUrl]['@value'], + propValue[KnoraConstants.fileValueAsUrl]['@value'], propValue[KnoraConstants.stillImageFileValueHasDimX], - propValue[KnoraConstants.stillImageFileValueHasDimY], - propValue[KnoraConstants.fileValueIsPreview] // optional (may be undefined) + propValue[KnoraConstants.stillImageFileValueHasDimY] ); valueSpecificProp = stillImageFileValue; @@ -215,7 +214,7 @@ export module ConvertJSONLD { propValue['@id'], propIri, propValue[KnoraConstants.fileValueHasFilename], - propValue[KnoraConstants.fileValueAsUrl] + propValue[KnoraConstants.fileValueAsUrl]['@value'] ); valueSpecificProp = textFileValue; diff --git a/projects/knora/core/src/lib/services/v2/ontology-cache.service.spec.ts b/projects/knora/core/src/lib/services/v2/ontology-cache.service.spec.ts index 515f96f50..9766e1083 100644 --- a/projects/knora/core/src/lib/services/v2/ontology-cache.service.spec.ts +++ b/projects/knora/core/src/lib/services/v2/ontology-cache.service.spec.ts @@ -78,11 +78,11 @@ describe('OntologyCacheService', () => { new OntologyMetadata('http://0.0.0.0:3333/ontology/0001/something/v2', 'The something ontology'), new OntologyMetadata('http://0.0.0.0:3333/ontology/00FF/images/v2', 'The images demo ontology'), new OntologyMetadata('http://0.0.0.0:3333/ontology/0801/beol/v2', 'The BEOL ontology'), - new OntologyMetadata('http://0.0.0.0:3333/ontology/0802/biblio/v2', 'The Biblio ontology'), + new OntologyMetadata('http://0.0.0.0:3333/ontology/0801/biblio/v2', 'The Biblio ontology'), new OntologyMetadata('http://0.0.0.0:3333/ontology/0803/incunabula/v2', 'The incunabula ontology'), new OntologyMetadata('http://0.0.0.0:3333/ontology/0804/dokubib/v2', 'The dokubib ontology'), new OntologyMetadata('http://0.0.0.0:3333/ontology/08AE/webern/v2', 'The Anton Webern project ontology'), - new OntologyMetadata ('http://api.knora.org/ontology/knora-api/v2', 'The knora-api ontology in the complex schema') + new OntologyMetadata('http://api.knora.org/ontology/knora-api/v2', 'The knora-api ontology in the complex schema') ]; metadataOntos.subscribe( @@ -203,7 +203,9 @@ describe('OntologyCacheService', () => { const resClassesInAnything = [ 'http://0.0.0.0:3333/ontology/0001/anything/v2#BlueThing', 'http://0.0.0.0:3333/ontology/0001/anything/v2#Thing', - 'http://0.0.0.0:3333/ontology/0001/anything/v2#ThingPicture' + 'http://0.0.0.0:3333/ontology/0001/anything/v2#ThingPicture', + 'http://0.0.0.0:3333/ontology/0001/anything/v2#ThingWithSeqnum', + 'http://0.0.0.0:3333/ontology/0001/anything/v2#TrivialThing' ]; const ontoResponseObs: Observable = ontologyCacheService.getEntityDefinitionsForOntologies(['http://0.0.0.0:3333/ontology/0001/anything/v2']); @@ -258,6 +260,16 @@ describe('OntologyCacheService', () => { 1, 'http://api.knora.org/ontology/knora-api/v2#creationDate' ), + new Cardinality( + CardinalityOccurrence.maxCard, + 1, + 'http://api.knora.org/ontology/knora-api/v2#deleteComment' + ), + new Cardinality( + CardinalityOccurrence.maxCard, + 1, + 'http://api.knora.org/ontology/knora-api/v2#deleteDate' + ), new Cardinality( CardinalityOccurrence.minCard, 0, @@ -278,6 +290,11 @@ describe('OntologyCacheService', () => { 0, 'http://api.knora.org/ontology/knora-api/v2#hasStandoffLinkToValue' ), + new Cardinality( + CardinalityOccurrence.card, + 1, + 'http://api.knora.org/ontology/knora-api/v2#isDeleted' + ), new Cardinality( CardinalityOccurrence.maxCard, 1, @@ -356,32 +373,32 @@ describe('OntologyCacheService', () => { new Cardinality( CardinalityOccurrence.minCard, 0, - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasThingPicture' + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasGeometry' ), new Cardinality( CardinalityOccurrence.minCard, 0, - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasThingPictureValue' + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasGeoname' ), new Cardinality( CardinalityOccurrence.minCard, 0, - 'http://0.0.0.0:3333/ontology/0001/anything/v2#isPartOfOtherThing' + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasThingPicture' ), new Cardinality( CardinalityOccurrence.minCard, 0, - 'http://0.0.0.0:3333/ontology/0001/anything/v2#isPartOfOtherThingValue' + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasThingPictureValue' ), new Cardinality( CardinalityOccurrence.minCard, 0, - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasBlueThingValue' + 'http://0.0.0.0:3333/ontology/0001/anything/v2#isPartOfOtherThing' ), new Cardinality( CardinalityOccurrence.minCard, 0, - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasBlueThing' + 'http://0.0.0.0:3333/ontology/0001/anything/v2#isPartOfOtherThingValue' ) ]; @@ -621,25 +638,53 @@ describe('OntologyCacheService', () => { true, false, true), - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasBlueThingValue': new Property( - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasBlueThingValue', - 'http://api.knora.org/ontology/knora-api/v2#LinkValue', + 'http://api.knora.org/ontology/knora-api/v2#deleteComment': new Property( + 'http://api.knora.org/ontology/knora-api/v2#deleteComment', + 'http://www.w3.org/2001/XMLSchema#string', + 'A comment explaining why a resource or value was marked as deleted', undefined, - 'A blue thing', - ['http://0.0.0.0:3333/ontology/0001/anything/v2#hasOtherThingValue'], - true, + [], false, - true), - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasBlueThing': new Property( - 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasBlueThing', - 'http://0.0.0.0:3333/ontology/0001/anything/v2#BlueThing', + false, + false), + 'http://api.knora.org/ontology/knora-api/v2#deleteDate': new Property( + 'http://api.knora.org/ontology/knora-api/v2#deleteDate', + 'http://www.w3.org/2001/XMLSchema#dateTimeStamp', + 'Indicates when a resource or value was deleted', undefined, - 'A blue thing', - ['http://0.0.0.0:3333/ontology/0001/anything/v2#hasOtherThing'], + [], + false, + false, + false), + 'http://api.knora.org/ontology/knora-api/v2#isDeleted': new Property( + 'http://api.knora.org/ontology/knora-api/v2#isDeleted', + 'http://www.w3.org/2001/XMLSchema#boolean', + 'Exists and is true if the resource has been deleted', + undefined, + [], + false, + false, + false), + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasGeometry': new Property( + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasGeometry', + 'http://api.knora.org/ontology/knora-api/v2#GeomValue', + undefined, + 'Geometry', + ['http://api.knora.org/ontology/knora-api/v2#hasValue'], true, + false, + false + ), + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasGeoname': new Property( + 'http://0.0.0.0:3333/ontology/0001/anything/v2#hasGeoname', + 'http://api.knora.org/ontology/knora-api/v2#GeonameValue', + undefined, + 'Geoname', + ['http://api.knora.org/ontology/knora-api/v2#hasValue'], true, - false) - }; + false, + false + )}; const expectedProperties = new Properties(); @@ -656,7 +701,7 @@ describe('OntologyCacheService', () => { expect(props).toEqual(expectedProperties); } - ); + ); })); @@ -695,6 +740,16 @@ describe('OntologyCacheService', () => { 1, 'http://api.knora.org/ontology/knora-api/v2#creationDate' ), + new Cardinality( + CardinalityOccurrence.maxCard, + 1, + 'http://api.knora.org/ontology/knora-api/v2#deleteComment' + ), + new Cardinality( + CardinalityOccurrence.maxCard, + 1, + 'http://api.knora.org/ontology/knora-api/v2#deleteDate' + ), new Cardinality( CardinalityOccurrence.minCard, 0, @@ -715,6 +770,11 @@ describe('OntologyCacheService', () => { 0, 'http://api.knora.org/ontology/knora-api/v2#hasStandoffLinkToValue' ), + new Cardinality( + CardinalityOccurrence.card, + 1, + 'http://api.knora.org/ontology/knora-api/v2#isDeleted' + ), new Cardinality( CardinalityOccurrence.maxCard, 1, diff --git a/projects/knora/core/src/lib/test-data/ontologycache/anything-complex-onto.json b/projects/knora/core/src/lib/test-data/ontologycache/anything-complex-onto.json index 0621d5292..0b7864077 100644 --- a/projects/knora/core/src/lib/test-data/ontologycache/anything-complex-onto.json +++ b/projects/knora/core/src/lib/test-data/ontologycache/anything-complex-onto.json @@ -1,1089 +1,1498 @@ { - "@graph" : [ { - "@id" : "anything:BlueThing", - "@type" : "owl:Class", - "knora-api:canBeInstantiated" : true, - "knora-api:isResourceClass" : true, - "rdfs:comment" : "Diese Resource-Klasse beschreibt ein blaues Ding", - "rdfs:label" : "Blue thing", - "rdfs:subClassOf" : [ { - "@id" : "anything:Thing" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasListItem" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasOtherListItem" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 1, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasOtherThing" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 1, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasOtherThingValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 2, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasRichtext" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 2, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasText" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 3, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 4, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasInteger" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 5, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasDecimal" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 6, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "anything:hasBoolean" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 7, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasUri" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 9, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasInterval" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 10, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasColor" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 13, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasThingPicture" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 13, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasThingPictureValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 15, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:isPartOfOtherThing" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 15, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:isPartOfOtherThingValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 16, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasBlueThingValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 63, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasBlueThing" - } - } ] - }, { - "@id" : "anything:StandoffEventTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents an event in a TextValue", - "rdfs:label" : "Represents an event in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:StandoffDateTag" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "anything:standoffEventTagHasDescription" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasCalendar" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndDay" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndEra" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndMonth" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndYear" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartDay" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartEra" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartMonth" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartYear" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "anything:Thing", - "@type" : "owl:Class", - "knora-api:canBeInstantiated" : true, - "knora-api:isResourceClass" : true, - "knora-api:resourceIcon" : "thing.png", - "rdfs:comment" : "'The whole world is full of things, which means there's a real need for someone to go searching for them. And that's exactly what a thing-searcher does.' --Pippi Longstocking", - "rdfs:label" : "Thing", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Resource" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasListItem" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasOtherListItem" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 1, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasOtherThing" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 1, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasOtherThingValue" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 2, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasRichtext" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 2, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasText" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 3, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasDate" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 4, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasInteger" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 5, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasDecimal" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 6, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "anything:hasBoolean" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 7, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasUri" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 9, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasInterval" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 10, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasColor" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 13, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasThingPicture" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 13, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasThingPictureValue" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 15, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:isPartOfOtherThing" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 15, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:isPartOfOtherThingValue" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 16, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasBlueThingValue" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 63, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasBlueThing" - } - } ] - }, { - "@id" : "anything:ThingPicture", - "@type" : "owl:Class", - "knora-api:canBeInstantiated" : true, - "knora-api:isResourceClass" : true, - "knora-api:resourceIcon" : "thing.png", - "rdfs:comment" : "Diese Resource-Klasse beschreibt ein Bild eines Dinges", - "rdfs:label" : "Picture of a thing", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:StillImageRepresentation" - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasPictureTitle" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasStillImageFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "anything:hasBlueThing", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "anything:BlueThing" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:label" : "A blue thing", - "rdfs:subPropertyOf" : { - "@id" : "anything:hasOtherThing" - } - }, { - "@id" : "anything:hasBlueThingValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "rdfs:label" : "A blue thing", - "rdfs:subPropertyOf" : { - "@id" : "anything:hasOtherThingValue" - } - }, { - "@id" : "anything:hasBoolean", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:BooleanValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Checkbox" - }, - "rdfs:label" : "Boolean value", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasColor", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:ColorValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Colorpicker" - }, - "rdfs:label" : "Color", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasDate", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:DateValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Date" - }, - "rdfs:label" : "Date", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasDecimal", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:DecimalValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:SimpleText" - }, - "rdfs:label" : "Decimal number", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasGeometry", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:GeomValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Geometry" - }, - "rdfs:label" : "Geometry", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasGeoname", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:GeonameValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Geonames" - }, - "rdfs:label" : "Geometry", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasInteger", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:IntValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiAttribute" : [ "max=-1", "min=0" ], - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Spinbox" - }, - "rdfs:label" : "Integer", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasInterval", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:IntervalValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Interval" - }, - "rdfs:label" : "Time interval", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasListItem", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:ListValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiAttribute" : "hlist=", - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:List" - }, - "rdfs:label" : "List element", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasOtherListItem", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:ListValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiAttribute" : "hlist=", - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:List" - }, - "rdfs:label" : "Other list element", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasOtherThing", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "anything:Thing" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:label" : "Another thing", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkTo" - } - }, { - "@id" : "anything:hasOtherThingValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:label" : "Another thing", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@id" : "anything:hasPictureTitle", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:TextValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:ThingPicture" - }, - "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:SimpleText" - }, - "rdfs:label" : "Title", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasRichtext", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:TextValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Richtext" - }, - "rdfs:label" : "Text", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasText", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:TextValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:SimpleText" - }, - "rdfs:label" : "Text", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:hasThingPicture", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "anything:ThingPicture" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:label" : "Picture of a thing", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasRepresentation" - } - }, { - "@id" : "anything:hasThingPictureValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:label" : "Picture of a thing", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasRepresentationValue" - } - }, { - "@id" : "anything:hasUri", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:UriValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:SimpleText" - }, - "rdfs:label" : "URI", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "anything:isPartOfOtherThing", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "anything:Thing" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:label" : "is part of", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:isPartOf" - } - }, { - "@id" : "anything:isPartOfOtherThingValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "anything:Thing" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:label" : "is part of", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:isPartOfValue" - } - }, { - "@id" : "anything:standoffEventTagHasDescription", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "anything:StandoffEventTag" - } - } ], - "@id" : "http://0.0.0.0:3333/ontology/0001/anything/v2", - "@type" : "owl:Ontology", - "knora-api:attachedToProject" : { - "@id" : "http://rdfh.ch/projects/0001" - }, - "knora-api:lastModificationDate" : "2017-12-19T15:23:42.166Z", - "rdfs:label" : "The anything ontology", - "@context" : { - "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "knora-api" : "http://api.knora.org/ontology/knora-api/v2#", - "owl" : "http://www.w3.org/2002/07/owl#", - "salsah-gui" : "http://api.knora.org/ontology/salsah-gui/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#" + "@graph" : [ { + "@id" : "anything:BlueThing", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "Diese Resource-Klasse beschreibt ein blaues Ding", + "rdfs:label" : "Blue thing", + "rdfs:subClassOf" : [ { + "@id" : "anything:Thing" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasListItem" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherListItem" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasRichtext" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasText" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInteger" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 5, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDecimal" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 6, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "anything:hasBoolean" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 7, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasUri" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 9, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInterval" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 10, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasColor" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 11, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeometry" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 12, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeoname" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPicture" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPictureValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThing" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThingValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 16, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasBlueThingValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 63, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasBlueThing" + } + } ] + }, { + "@id" : "anything:StandoffEventTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents an event in a TextValue", + "rdfs:label" : "Represents an event in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffDateTag" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "anything:standoffEventTagHasDescription" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasCalendar" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndDay" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndEra" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndMonth" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndYear" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartDay" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartEra" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartMonth" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartYear" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "anything:Thing", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "thing.png", + "rdfs:comment" : "'The whole world is full of things, which means there's a real need for someone to go searching for them. And that's exactly what a thing-searcher does.' --Pippi Longstocking", + "rdfs:label" : "Thing", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasListItem" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherListItem" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherThing" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherThingValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasRichtext" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasText" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInteger" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDecimal" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 6, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "anything:hasBoolean" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 7, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasUri" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 9, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInterval" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 10, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasColor" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 11, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeometry" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 12, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeoname" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPicture" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPictureValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThing" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThingValue" + } + } ] + }, { + "@id" : "anything:ThingPicture", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "thing.png", + "rdfs:comment" : "Diese Resource-Klasse beschreibt ein Bild eines Dinges", + "rdfs:label" : "Picture of a thing", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StillImageRepresentation" + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasPictureTitle" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasStillImageFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "anything:ThingWithSeqnum", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "Diese Resource-Klasse beschreibt ein Ding mit einer Sequenznummer", + "rdfs:label" : "Thing with sequence number", + "rdfs:subClassOf" : [ { + "@id" : "anything:Thing" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasListItem" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherListItem" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherThing" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherThingValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasRichtext" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasText" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInteger" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 5, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDecimal" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 6, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "anything:hasBoolean" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 7, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasUri" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 9, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInterval" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 10, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasColor" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 11, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeometry" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 12, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeoname" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPicture" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPictureValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThing" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThingValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 100, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:seqnum" + } + } ] + }, { + "@id" : "anything:TrivialThing", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "thing.png", + "rdfs:comment" : "Diese Resource-Klasse beschreibt ein unbedeutendes Ding", + "rdfs:label" : "Trivial thing", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "anything:hasBlueThing", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "anything:BlueThing" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:label" : "A blue thing", + "rdfs:subPropertyOf" : { + "@id" : "anything:hasOtherThing" + } + }, { + "@id" : "anything:hasBlueThingValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "rdfs:label" : "A blue thing", + "rdfs:subPropertyOf" : { + "@id" : "anything:hasOtherThingValue" + } + }, { + "@id" : "anything:hasBoolean", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:BooleanValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Checkbox" + }, + "rdfs:label" : "Boolean value", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasColor", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:ColorValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Colorpicker" + }, + "rdfs:label" : "Color", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasDate", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DateValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Date" + }, + "rdfs:label" : "Date", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasDecimal", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DecimalValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:label" : "Decimal number", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasGeometry", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:GeomValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Geometry" + }, + "rdfs:label" : "Geometry", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasGeoname", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:GeonameValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Geonames" + }, + "rdfs:label" : "Geoname", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasInteger", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:IntValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiAttribute" : [ "max=-1", "min=0" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Spinbox" + }, + "rdfs:label" : "Integer", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasInterval", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:IntervalValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Interval" + }, + "rdfs:label" : "Time interval", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasListItem", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:ListValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiAttribute" : "hlist=", + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:List" + }, + "rdfs:label" : "List element", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasOtherListItem", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:ListValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiAttribute" : "hlist=", + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:List" + }, + "rdfs:label" : "Other list element", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasOtherThing", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "anything:Thing" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:label" : "Another thing", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "anything:hasOtherThingValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:label" : "Another thing", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "anything:hasPictureTitle", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:ThingPicture" + }, + "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:label" : "Title", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasRichtext", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Richtext" + }, + "rdfs:label" : "Text", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasText", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:label" : "Text", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:hasThingPicture", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "anything:ThingPicture" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:label" : "Picture of a thing", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasRepresentation" + } + }, { + "@id" : "anything:hasThingPictureValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:label" : "Picture of a thing", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasRepresentationValue" + } + }, { + "@id" : "anything:hasUri", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:UriValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:label" : "URI", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "anything:isPartOfOtherThing", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "anything:Thing" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:label" : "is part of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:isPartOf" + } + }, { + "@id" : "anything:isPartOfOtherThingValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "anything:Thing" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:label" : "is part of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:isPartOfValue" + } + }, { + "@id" : "anything:standoffEventTagHasDescription", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "anything:StandoffEventTag" } + } ], + "@id" : "http://0.0.0.0:3333/ontology/0001/anything/v2", + "@type" : "owl:Ontology", + "knora-api:attachedToProject" : { + "@id" : "http://rdfh.ch/projects/0001" + }, + "knora-api:lastModificationDate" : "2017-12-19T15:23:42.166Z", + "rdfs:label" : "The anything ontology", + "@context" : { + "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "knora-api" : "http://api.knora.org/ontology/knora-api/v2#", + "owl" : "http://www.w3.org/2002/07/owl#", + "salsah-gui" : "http://api.knora.org/ontology/salsah-gui/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/projects/knora/core/src/lib/test-data/ontologycache/beol-complex-onto.json b/projects/knora/core/src/lib/test-data/ontologycache/beol-complex-onto.json index e90acb34f..bc89cd2ea 100644 --- a/projects/knora/core/src/lib/test-data/ontologycache/beol-complex-onto.json +++ b/projects/knora/core/src/lib/test-data/ontologycache/beol-complex-onto.json @@ -1,4049 +1,4522 @@ { - "@graph": [ - { - "@id": "beol:Archive", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "A resource representing an Archive ", - "rdfs:label": "Archive", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffBrTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a linebreak", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffEntityTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents an entity () tag in text", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffFacsimileTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "a URI referring to a facsimile", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffFigCaptionTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a html figcaption tag", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffFigTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a html figure tag", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffFigureTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a figure in text", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffFontTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "Represents font for special character", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffHrTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a horizontal line", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffHtmlTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a HTML tag in MediaWiki", - "rdfs:subClassOf": [] - }, - { - "@id": "beol:StandoffMathTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "mathematical notation encoded in LaTeX", - "rdfs:subClassOf": [ - { - "@id": "knora-api:StandoffTag" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEnd" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasOriginalXMLID" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStart" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasUUID" - } - } - ] - }, - { - "@id": "beol:StandoffPbTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a page break", - "rdfs:subClassOf": [ - { - "@id": "knora-api:StandoffTag" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEnd" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasOriginalXMLID" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStart" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasUUID" - } - } - ] - }, - { - "@id": "beol:StandoffReferenceTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "represents a footnote", - "rdfs:subClassOf": [ - { - "@id": "knora-api:StandoffTag" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEnd" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasOriginalXMLID" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStart" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasUUID" - } - } - ] - }, - { - "@id": "beol:StandoffSmallTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:comment": "Represents text in small letters format in a TextValue", - "rdfs:subClassOf": [ - { - "@id": "standoff:StandoffVisualTag" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEnd" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasOriginalXMLID" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStart" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasUUID" - } - } - ] - }, - { - "@id": "beol:StandoffTableCellTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:subClassOf": [ - { - "@id": "standoff:StandoffTableCellTag" - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableCellTagHasAlignment" - } - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableCellTagHasColumnSpan" - } - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableCellTagHasRowSpan" - } - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableCellTagHasStyle" - } - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableCellTagHasVerticalAlignment" - } - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableCellTagHasWidth" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEnd" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasOriginalXMLID" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStart" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasUUID" - } - } - ] - }, - { - "@id": "beol:StandoffTableTag", - "@type": "owl:Class", - "knora-api:isStandoffClass": true, - "rdfs:subClassOf": [ - { - "@id": "standoff:StandoffTableTag" - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableTagHasBorder" - } - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:standoffTableTagHasCellPadding" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEnd" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasEndParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasOriginalXMLID" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStart" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartIndex" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasStartParent" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:standoffTagHasUUID" - } - } - ] - }, - { - "@id": "beol:archiveHasAbbreviation", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:Archive" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents the abbreviation of name of archive.", - "rdfs:label": "Archive Arbbreviation", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:archiveHasLocation", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:Archive" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents location of an archive.", - "rdfs:label": "Archive Location", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:archiveHasName", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents a Name.", - "rdfs:label": "Name", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:beolIDs", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents IDs given to resource in BEOL project.", - "rdfs:label": "BEOL-IDs", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:comment", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "knora-api:Resource" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Richtext" - }, - "rdfs:comment": "Comment", - "rdfs:label": "Comment", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasComment" - } - }, - { - "@id": "beol:creationDate", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:DateValue" - }, - "knora-api:subjectType": { - "@id": "beol:writtenSource" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Date" - }, - "rdfs:comment": "Date of creation", - "rdfs:label": "Date of creation", - "rdfs:subPropertyOf": [ - { - "@id": "knora-api:hasValue" - }, - { - "@id": "http://purl.org/dc/terms/date" - } - ] - }, - { - "@id": "beol:documentImage", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "knora-api:resourceIcon": "page.gif", - "rdfs:comment": "An image or scan of a document", - "rdfs:label": "Document Image", - "rdfs:subClassOf": [ - { - "@id": "knora-api:StillImageRepresentation" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasStillImageFileValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:pagenum" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:partOf" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:partOfValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:seqnum" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:comment" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 5, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:endnote", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "A resource representing an endnote", - "rdfs:label": "Endnote", - "rdfs:subClassOf": [ - { - "@id": "knora-api:Resource" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:endnoteHasNumber" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasFigure" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasFigureValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasText" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:endnoteHasNumber", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:endnote" - }, - "salsah-gui:guiAttribute": [ - "cols=60", - "rows=4", - "wrap=soft" - ], - "salsah-gui:guiElement": { - "@id": "salsah-gui:Textarea" - }, - "rdfs:comment": "Number of the endnote ", - "rdfs:label": "Endnote Number", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:externalRepository", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:UriValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "rdfs:comment": "Letter is also available at", - "rdfs:label": "Letter is also available at", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:facsimile", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "A facsimile is a copy or reproduction of a letter or manuscript", - "rdfs:label": "Facsimile", - "rdfs:subClassOf": [ - { - "@id": "beol:documentImage" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasStillImageFileValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasCaption" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 1, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:pagenum" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:partOf" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:partOfValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 3, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:seqnum" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 4, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:comment" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 5, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:figure", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "A resource representing a figure", - "rdfs:label": "Figure", - "rdfs:subClassOf": [ - { - "@id": "knora-api:StillImageRepresentation" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasStillImageFileValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasCaption" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:hasAlternativeName", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents alternative name.", - "rdfs:label": "Alternative name", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasAuthor", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:person" - }, - "knora-api:subjectType": { - "@id": "beol:writtenSource" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Author", - "rdfs:label": "Author", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:hasAuthorValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:writtenSource" - }, - "rdfs:comment": "Author", - "rdfs:label": "Author", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:hasBirthDate", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:DateValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Date" - }, - "rdfs:comment": "Represents a date of birth.", - "rdfs:label": "Date of birth", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasBirthPlace", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents a birth place.", - "rdfs:label": "Birth Place", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasCaption", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Richtext" - }, - "rdfs:comment": "Caption", - "rdfs:label": "Caption", - "rdfs:subPropertyOf": { - "@id": "beol:hasText" - } - }, - { - "@id": "beol:hasDeathDate", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:DateValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Date" - }, - "rdfs:comment": "Represents a date of death.", - "rdfs:label": "Date of death", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasDeathPlace", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents a place of death.", - "rdfs:label": "Place of death", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasDictionaryEntries", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents entries in dictionaries about the person.", - "rdfs:label": "Dictionary Entries", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasFamilyName", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents a family name.", - "rdfs:label": "Family name", - "rdfs:subPropertyOf": [ - { - "@id": "knora-api:hasValue" - }, - { - "@id": "http://xmlns.com/foaf/0.1/familyName" - } - ] - }, - { - "@id": "beol:hasFigure", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:figure" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Figure of Letter", - "rdfs:label": "Figure", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:hasFigureValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "rdfs:comment": "Figure of Letter", - "rdfs:label": "Figure", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:hasFloruitDate", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:DateValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Date" - }, - "rdfs:comment": "Represents a floruit date.", - "rdfs:label": "Floruit Date", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasFloruitPlace", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents a place a person is seen.", - "rdfs:label": "Place of Floruit", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasGivenName", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents a Given name.", - "rdfs:label": "Given name", - "rdfs:subPropertyOf": [ - { - "@id": "knora-api:hasValue" - }, - { - "@id": "http://xmlns.com/foaf/0.1/givenName" - } - ] - }, - { - "@id": "beol:hasIAFIdentifier", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents an IAF identifier.", - "rdfs:label": "Integrated Authority File", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasMarriageDate", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:DateValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Date" - }, - "rdfs:comment": "Represents a marriage date.", - "rdfs:label": "Marriage Date", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasMarriagePlace", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents a place a person is married in.", - "rdfs:label": "Place of Marriage", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasRecipient", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:person" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Recipient", - "rdfs:label": "Recipient", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:hasRecipientValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "rdfs:comment": "Recipient", - "rdfs:label": "Recipient", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:hasSection", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:section" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Repräsentiert ein Sektion", - "rdfs:label": "has section", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:hasSectionValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "rdfs:comment": "Repräsentiert ein Sektion", - "rdfs:label": "has section", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:hasSon", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:person" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Repräsentiert eine Vater-Sohn Beziehung", - "rdfs:label": "has son", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:hasSonValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Repräsentiert eine Vater-Sohn Beziehung", - "rdfs:label": "has son", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:hasSubject", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:ListValue" - }, - "salsah-gui:guiAttribute": "hlist=", - "salsah-gui:guiElement": { - "@id": "salsah-gui:List" - }, - "rdfs:comment": "Topics", - "rdfs:label": "Topics", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasSystemNumber", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:writtenSource" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "system number", - "rdfs:label": "System number", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:hasText", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Richtext" - }, - "rdfs:comment": "Text", - "rdfs:label": "Text", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:introduction", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "A resource representing an introduction", - "rdfs:label": "Introduction", - "rdfs:subClassOf": [ - { - "@id": "knora-api:Resource" - }, - { - "@type": "owl:Restriction", - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSection" - } - }, - { - "@type": "owl:Restriction", - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSectionValue" - } - }, - { - "@type": "owl:Restriction", - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasText" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:isPublishedIn", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "biblio:EditedBook" - }, - "knora-api:subjectType": { - "@id": "beol:publishedLetter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Letter is published in", - "rdfs:label": "Letter is published in", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:isPublishedInValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:publishedLetter" - }, - "rdfs:comment": "Letter is published", - "rdfs:label": "Letter is published in", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:letter", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "knora-api:resourceIcon": "letter.png", - "rdfs:comment": "A resource representing a letter", - "rdfs:label": "Letter", - "rdfs:subClassOf": [ - { - "@id": "beol:writtenSource" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasRecipient" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasRecipientValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "beol:title" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasAuthor" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasAuthorValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterHasNumber" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:creationDate" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSubject" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasFigure" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasFigureValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 3, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:location" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 4, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasText" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterHasOriginal" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterHasOriginalValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 5, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 5, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterHasTranslation" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 5, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterHasTranslationValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 6, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterIsReplyTo" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 6, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterIsReplyToValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 7, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterIsPublished" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 7, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterIsPublishedValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 8, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterHasRepertoriumNumber" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 9, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:letterHasLanguage" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 10, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:mentionsPerson" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 10, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:mentionsPersonValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 11, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:comment" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 12, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:externalRepository" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 13, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasSystemNumber" - } - } - ] - }, - { - "@id": "beol:letterHasLanguage", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents language of the letter.", - "rdfs:label": "Language", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:letterHasNumber", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiAttribute": [ - "cols=60", - "rows=4", - "wrap=soft" - ], - "salsah-gui:guiElement": { - "@id": "salsah-gui:Textarea" - }, - "rdfs:comment": "Number of the letter ", - "rdfs:label": "Letter Number", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:letterHasOriginal", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:manuscript" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Manuscript of letter", - "rdfs:label": "Manuscript of letter", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:letterHasOriginalValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "rdfs:comment": "Manuscript of letter", - "rdfs:label": "Manuscript of letter", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:letterHasRepertoriumNumber", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Number in Repertorium of Euler correspondence (O.IVA/1, p.134-166)", - "rdfs:label": "Repertorium-Number", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:letterHasTranslation", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:letter" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Translation", - "rdfs:label": "Translation", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:letterHasTranslationValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "rdfs:comment": "Translation", - "rdfs:label": "Translation", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:letterIsPublished", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:publishedLetter" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Letter is published", - "rdfs:label": "Letter is published", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:letterIsPublishedValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "rdfs:comment": "Letter is published", - "rdfs:label": "Letter is published", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:letterIsReplyTo", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:letter" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Letter is reply to another letter", - "rdfs:label": "Reply to", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:letterIsReplyToValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:writtenSource" - }, - "rdfs:comment": "Letter is reply to another letter", - "rdfs:label": "Reply to", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:location", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:writtenSource" - }, - "salsah-gui:guiAttribute": [ - "cols=60", - "rows=4", - "wrap=soft" - ], - "salsah-gui:guiElement": { - "@id": "salsah-gui:Textarea" - }, - "rdfs:comment": "Place where the physical original is located ", - "rdfs:label": "Location", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:manuscript", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "knora-api:resourceIcon": "manuscript.gif", - "rdfs:comment": "Diese Resource-Klasse beschreibt ein Manuskript", - "rdfs:label": "Manuscript", - "rdfs:subClassOf": [ - { - "@id": "beol:writtenSource" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:manuscriptHasArchive" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:manuscriptHasArchiveValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "beol:title" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasAuthor" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasAuthorValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:manuscriptStartFolium" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:creationDate" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:manuscriptEndFolium" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 3, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:location" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:manuscriptAdditionalFolium" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 4, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasText" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:manuscriptHasShelfMark" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 5, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 5, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:mentionedIn" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 6, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:comment" - } - } - ] - }, - { - "@id": "beol:manuscriptAdditionalFolium", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:manuscript" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents an additional folium.", - "rdfs:label": "Additional Folium", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:manuscriptEndFolium", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:manuscript" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents the last folium.", - "rdfs:label": "End Folium", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:manuscriptHasArchive", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:Archive" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Represents the archive where manuscript is stored.", - "rdfs:label": "Archive of Manuscript", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:manuscriptHasArchiveValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "rdfs:comment": "Represents the archive where manuscript is stored.", - "rdfs:label": "Archive of Manuscript", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:manuscriptHasShelfMark", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:manuscript" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents the shelf mark of manuscript in archive.", - "rdfs:label": "Shelfmark", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:manuscriptStartFolium", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:manuscript" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents the start folium.", - "rdfs:label": "Start Folium", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:mentionedIn", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents where the resource is mentioned .", - "rdfs:label": "Mentioned In", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:mentionsPerson", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:person" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "mentioned person", - "rdfs:label": "Mentioned person", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkTo" - } - }, - { - "@id": "beol:mentionsPersonValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:letter" - }, - "rdfs:comment": "mentioned person", - "rdfs:label": "Mentioned person", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasLinkToValue" - } - }, - { - "@id": "beol:page", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "A page is a part of a convolute", - "rdfs:label": "Page", - "rdfs:subClassOf": [ - { - "@id": "beol:documentImage" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasStillImageFileValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 1, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:pagenum" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:partOf" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:partOfValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 3, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:seqnum" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 4, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:comment" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "salsah-gui:guiOrder": 5, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:pagenum", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:documentImage" - }, - "salsah-gui:guiAttribute": [ - "maxlength=8", - "size=8" - ], - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "A distinct identification of a page", - "rdfs:label": "Page identifier", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:partOf", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "beol:writtenSource" - }, - "knora-api:subjectType": { - "@id": "beol:documentImage" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Represents a relation to another resource of which this resource is a part (dependent)", - "rdfs:label": "is a part of", - "rdfs:subPropertyOf": { - "@id": "knora-api:isPartOf" - } - }, - { - "@id": "beol:partOfValue", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isLinkValueProperty": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:LinkValue" - }, - "knora-api:subjectType": { - "@id": "beol:documentImage" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:Searchbox" - }, - "rdfs:comment": "Diese Property bezeichnet eine Verbindung zu einer anderen Resource, in dem ausgesagt wird, dass die vorliegende Resource ein integraler Teil der anderen Resource ist. Zum Beispiel ist eine Buchseite ein integraler Bestandteil genau eines Buches.", - "rdfs:label": "is a part of", - "rdfs:subPropertyOf": { - "@id": "knora-api:isPartOfValue" - } - }, - { - "@id": "beol:person", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "knora-api:resourceIcon": "person.png", - "rdfs:comment": "A resource representing a person", - "rdfs:label": "Person", - "rdfs:subClassOf": [ - { - "@id": "knora-api:Resource" - }, - { - "@id": "http://xmlns.com/foaf/0.1/Person" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasFamilyName" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasGivenName" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:personHasTitle" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasAlternativeName" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 5, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasIAFIdentifier" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 6, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasBirthDate" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 7, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasDeathDate" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 8, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasFloruitDate" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 9, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasMarriageDate" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 10, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasBirthPlace" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 11, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasDeathPlace" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 12, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasFloruitPlace" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 13, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasMarriagePlace" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 14, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSonValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 15, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSon" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 16, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasDictionaryEntries" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 17, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:comment" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 18, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:mentionedIn" - } - } - ] - }, - { - "@id": "beol:personHasTitle", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:person" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents title of person.", - "rdfs:label": "Title", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:publishedLetter", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "knora-api:resourceIcon": "letter.png", - "rdfs:comment": "A resource representing a published letter", - "rdfs:label": "Published Letter", - "rdfs:subClassOf": [ - { - "@id": "knora-api:Resource" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "beol:isPublishedIn" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "beol:isPublishedInValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:publishedLetterHasSeqnum" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:publishedLetterStartPage" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:publishedLetterEndPage" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:publishedLetterEndPage", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:publishedLetter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents end-page of letter in Edition.", - "rdfs:label": "End Page in Edition", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:publishedLetterHasSeqnum", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:publishedLetter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents sequence number of letter in Edition.", - "rdfs:label": "Sequence Number in Edition", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:publishedLetterStartPage", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:publishedLetter" - }, - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Represents start page of letter in Edition.", - "rdfs:label": "Start Page in Edition", - "rdfs:subPropertyOf": { - "@id": "knora-api:hasValue" - } - }, - { - "@id": "beol:section", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "A resource representing a section", - "rdfs:label": "Section", - "rdfs:subClassOf": [ - { - "@id": "knora-api:Resource" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSubject" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "beol:sectionHasTitle" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasText" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSection" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasSectionValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] - }, - { - "@id": "beol:sectionHasTitle", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:section" - }, - "salsah-gui:guiAttribute": [ - "maxlength=255", - "size=80" - ], - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Title", - "rdfs:label": "Title", - "rdfs:subPropertyOf": [ - { - "@id": "knora-api:hasValue" - }, - { - "@id": "http://purl.org/dc/terms/title" - } - ] - }, - { - "@id": "beol:seqnum", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:IntValue" - }, - "knora-api:subjectType": { - "@id": "beol:documentImage" - }, - "salsah-gui:guiAttribute": [ - "max=-1", - "min=0" - ], - "salsah-gui:guiElement": { - "@id": "salsah-gui:Spinbox" - }, - "rdfs:comment": "This property stands for the position within a set of rdered items (resoucres)", - "rdfs:label": "Sequence number", - "rdfs:subPropertyOf": { - "@id": "knora-api:seqnum" - } - }, - { - "@id": "beol:standoffEntityType", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffEntityTag" - }, - "rdfs:comment": "settings type of an entity" - }, - { - "@id": "beol:standoffFontType", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffFontTag" - }, - "rdfs:comment": "Represents a webfont type for special character" - }, - { - "@id": "beol:standoffTableCellTagHasAlignment", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableCellTag" - }, - "rdfs:comment": "settings for the alignment of a table cell" - }, - { - "@id": "beol:standoffTableCellTagHasColumnSpan", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableCellTag" - }, - "rdfs:comment": "settings for column span of a table cell" - }, - { - "@id": "beol:standoffTableCellTagHasRowSpan", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableCellTag" - }, - "rdfs:comment": "settings for row span of a table cell" - }, - { - "@id": "beol:standoffTableCellTagHasStyle", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableCellTag" - }, - "rdfs:comment": "settings for the style of a table cell" - }, - { - "@id": "beol:standoffTableCellTagHasVerticalAlignment", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableCellTag" - }, - "rdfs:comment": "settings for the vertical alignment of a table cell" - }, - { - "@id": "beol:standoffTableCellTagHasWidth", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableCellTag" - }, - "rdfs:comment": "settings for the width of a table cell" - }, - { - "@id": "beol:standoffTableTagHasBorder", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableTag" - }, - "rdfs:comment": "border settings of a table" - }, - { - "@id": "beol:standoffTableTagHasCellPadding", - "@type": "owl:DatatypeProperty", - "knora-api:objectType": { - "@id": "xsd:string" - }, - "knora-api:subjectType": { - "@id": "beol:StandoffTableTag" - }, - "rdfs:comment": "table cell padding" - }, - { - "@id": "beol:title", - "@type": "owl:ObjectProperty", - "knora-api:isEditable": true, - "knora-api:isResourceProperty": true, - "knora-api:objectType": { - "@id": "knora-api:TextValue" - }, - "knora-api:subjectType": { - "@id": "beol:writtenSource" - }, - "salsah-gui:guiAttribute": [ - "maxlength=255", - "size=80" - ], - "salsah-gui:guiElement": { - "@id": "salsah-gui:SimpleText" - }, - "rdfs:comment": "Title", - "rdfs:label": "Title", - "rdfs:subPropertyOf": [ - { - "@id": "knora-api:hasValue" - }, - { - "@id": "http://purl.org/dc/terms/title" - } - ] - }, - { - "@id": "beol:writtenSource", - "@type": "owl:Class", - "knora-api:canBeInstantiated": true, - "knora-api:isResourceClass": true, - "rdfs:comment": "Written source", - "rdfs:label": "Written source", - "rdfs:subClassOf": [ - { - "@id": "knora-api:Resource" - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToProject" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:attachedToUser" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:creationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasIncomingLink" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "knora-api:hasPermissions" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkTo" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "knora-api:hasStandoffLinkToValue" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "knora-api:lastModificationDate" - } - }, - { - "@type": "owl:Restriction", - "knora-api:isInherited": true, - "owl:cardinality": 1, - "owl:onProperty": { - "@id": "rdfs:label" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 0, - "owl:minCardinality": 1, - "owl:onProperty": { - "@id": "beol:title" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasAuthor" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 1, - "owl:minCardinality": 0, - "owl:onProperty": { - "@id": "beol:hasAuthorValue" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 2, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:creationDate" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 3, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:location" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 4, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:hasText" - } - }, - { - "@type": "owl:Restriction", - "salsah-gui:guiOrder": 5, - "owl:maxCardinality": 1, - "owl:onProperty": { - "@id": "beol:beolIDs" - } - } - ] + "@graph" : [ { + "@id" : "beol:Archive", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource representing an Archive ", + "rdfs:label" : "Archive", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:archiveHasName" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:archiveHasAbbreviation" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:archiveHasLocation" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:mentionedIn" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:comment" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:StandoffBrTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a linebreak", + "rdfs:subClassOf" : [ { + "@id" : "standoff:StandoffBrTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffEntityTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents an entity () tag in text", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffLinkTag" + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffEntityType" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffFacsimileTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "a URI referring to a facsimile", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffLinkTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffFigCaptionTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a html figcaption tag", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffFigTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a html figure tag", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffFigureTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a figure in text", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffLinkTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffFontTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents font for special character", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffFontType" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffHrTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a horizontal line", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffHtmlTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a HTML tag in MediaWiki", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffMathTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "mathematical notation encoded in LaTeX", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffPbTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a page break", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffReferenceTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "represents a footnote", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffSmallTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents text in small letters format in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "standoff:StandoffVisualTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffTableCellTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:subClassOf" : [ { + "@id" : "standoff:StandoffTableCellTag" + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableCellTagHasAlignment" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableCellTagHasColumnSpan" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableCellTagHasRowSpan" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableCellTagHasStyle" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableCellTagHasVerticalAlignment" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableCellTagHasWidth" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:StandoffTableTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:subClassOf" : [ { + "@id" : "standoff:StandoffTableTag" + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableTagHasBorder" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:standoffTableTagHasCellPadding" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "beol:archiveHasAbbreviation", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:Archive" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents the abbreviation of name of archive.", + "rdfs:label" : "Archive Arbbreviation", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:archiveHasLocation", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:Archive" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents location of an archive.", + "rdfs:label" : "Archive Location", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:archiveHasName", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents a Name.", + "rdfs:label" : "Name", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:beolIDs", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents IDs given to resource in BEOL project.", + "rdfs:label" : "BEOL-IDs", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:comment", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Richtext" + }, + "rdfs:comment" : "Comment", + "rdfs:label" : "Comment", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasComment" + } + }, { + "@id" : "beol:creationDate", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DateValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:writtenSource" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Date" + }, + "rdfs:comment" : "Date of creation", + "rdfs:label" : "Date of creation", + "rdfs:subPropertyOf" : [ { + "@id" : "knora-api:hasValue" + }, { + "@id" : "http://purl.org/dc/terms/date" + } ] + }, { + "@id" : "beol:documentImage", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "page.gif", + "rdfs:comment" : "An image or scan of a document", + "rdfs:label" : "Document Image", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StillImageRepresentation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasStillImageFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:pagenum" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:partOf" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:partOfValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:seqnum" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:comment" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:endnote", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource representing an endnote", + "rdfs:label" : "Endnote", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:endnoteHasNumber" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasFigure" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasFigureValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasText" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:endnoteHasNumber", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:endnote" + }, + "salsah-gui:guiAttribute" : [ "cols=60", "rows=4", "wrap=soft" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Textarea" + }, + "rdfs:comment" : "Number of the endnote ", + "rdfs:label" : "Endnote Number", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:externalRepository", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:UriValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "rdfs:comment" : "Letter is also available at", + "rdfs:label" : "Letter is also available at", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:facsimile", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A facsimile is a copy or reproduction of a letter or manuscript", + "rdfs:label" : "Facsimile", + "rdfs:subClassOf" : [ { + "@id" : "beol:documentImage" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasStillImageFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasCaption" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:pagenum" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:partOf" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:partOfValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 3, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:seqnum" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:comment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:figure", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource representing a figure", + "rdfs:label" : "Figure", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StillImageRepresentation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasStillImageFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasCaption" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:hasAlternativeName", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents alternative name.", + "rdfs:label" : "Alternative name", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasAuthor", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:person" + }, + "knora-api:subjectType" : { + "@id" : "beol:writtenSource" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Author", + "rdfs:label" : "Author", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:hasAuthorValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:writtenSource" + }, + "rdfs:comment" : "Author", + "rdfs:label" : "Author", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:hasBirthDate", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DateValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Date" + }, + "rdfs:comment" : "Represents a date of birth.", + "rdfs:label" : "Date of birth", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasBirthPlace", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents a birth place.", + "rdfs:label" : "Birth Place", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasCaption", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Richtext" + }, + "rdfs:comment" : "Caption", + "rdfs:label" : "Caption", + "rdfs:subPropertyOf" : { + "@id" : "beol:hasText" + } + }, { + "@id" : "beol:hasDeathDate", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DateValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Date" + }, + "rdfs:comment" : "Represents a date of death.", + "rdfs:label" : "Date of death", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasDeathPlace", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents a place of death.", + "rdfs:label" : "Place of death", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasDictionaryEntries", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents entries in dictionaries about the person.", + "rdfs:label" : "Dictionary Entries", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasFamilyName", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents a family name.", + "rdfs:label" : "Family name", + "rdfs:subPropertyOf" : [ { + "@id" : "knora-api:hasValue" + }, { + "@id" : "http://xmlns.com/foaf/0.1/familyName" + } ] + }, { + "@id" : "beol:hasFigure", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:figure" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Figure of Letter", + "rdfs:label" : "Figure", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:hasFigureValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "rdfs:comment" : "Figure of Letter", + "rdfs:label" : "Figure", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:hasFloruitDate", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DateValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Date" + }, + "rdfs:comment" : "Represents a floruit date.", + "rdfs:label" : "Floruit Date", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasFloruitPlace", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents a place a person is seen.", + "rdfs:label" : "Place of Floruit", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasGivenName", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents a Given name.", + "rdfs:label" : "Given name", + "rdfs:subPropertyOf" : [ { + "@id" : "knora-api:hasValue" + }, { + "@id" : "http://xmlns.com/foaf/0.1/givenName" + } ] + }, { + "@id" : "beol:hasIAFIdentifier", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents an IAF identifier.", + "rdfs:label" : "Integrated Authority File", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasMarriageDate", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DateValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Date" + }, + "rdfs:comment" : "Represents a marriage date.", + "rdfs:label" : "Marriage Date", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasMarriagePlace", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents a place a person is married in.", + "rdfs:label" : "Place of Marriage", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasRecipient", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:person" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Recipient", + "rdfs:label" : "Recipient", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:hasRecipientValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "rdfs:comment" : "Recipient", + "rdfs:label" : "Recipient", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:hasSection", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:section" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Repräsentiert ein Sektion", + "rdfs:label" : "has section", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:hasSectionValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "rdfs:comment" : "Repräsentiert ein Sektion", + "rdfs:label" : "has section", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:hasSon", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:person" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Repräsentiert eine Vater-Sohn Beziehung", + "rdfs:label" : "has son", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:hasSonValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Repräsentiert eine Vater-Sohn Beziehung", + "rdfs:label" : "has son", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:hasSubject", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:ListValue" + }, + "salsah-gui:guiAttribute" : "hlist=", + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:List" + }, + "rdfs:comment" : "Topics", + "rdfs:label" : "Topics", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasSystemNumber", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:writtenSource" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "system number", + "rdfs:label" : "System number", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:hasText", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Richtext" + }, + "rdfs:comment" : "Text", + "rdfs:label" : "Text", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:introduction", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource representing an introduction", + "rdfs:label" : "Introduction", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSection" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSectionValue" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasText" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:isPublishedIn", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "biblio:EditedBook" + }, + "knora-api:subjectType" : { + "@id" : "beol:publishedLetter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Letter is published in", + "rdfs:label" : "Letter is published in", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:isPublishedInValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:publishedLetter" + }, + "rdfs:comment" : "Letter is published", + "rdfs:label" : "Letter is published in", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:letter", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "letter.png", + "rdfs:comment" : "A resource representing a letter", + "rdfs:label" : "Letter", + "rdfs:subClassOf" : [ { + "@id" : "beol:writtenSource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasRecipient" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasRecipientValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:title" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasAuthor" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasAuthorValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterHasNumber" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:creationDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSubject" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasFigure" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasFigureValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 3, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:location" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 4, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasText" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterHasOriginal" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterHasOriginalValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterHasTranslation" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterHasTranslationValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 6, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterIsReplyTo" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 6, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterIsReplyToValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 7, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterIsPublished" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 7, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterIsPublishedValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 8, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterHasRepertoriumNumber" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 9, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:letterHasLanguage" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 10, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:mentionsPerson" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 10, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:mentionsPersonValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 11, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:comment" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 12, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:externalRepository" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 13, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasSystemNumber" + } + } ] + }, { + "@id" : "beol:letterHasLanguage", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents language of the letter.", + "rdfs:label" : "Language", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:letterHasNumber", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiAttribute" : [ "cols=60", "rows=4", "wrap=soft" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Textarea" + }, + "rdfs:comment" : "Number of the letter ", + "rdfs:label" : "Letter Number", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:letterHasOriginal", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:manuscript" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Manuscript of letter", + "rdfs:label" : "Manuscript of letter", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:letterHasOriginalValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "rdfs:comment" : "Manuscript of letter", + "rdfs:label" : "Manuscript of letter", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:letterHasRepertoriumNumber", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Number in Repertorium of Euler correspondence (O.IVA/1, p.134-166)", + "rdfs:label" : "Repertorium-Number", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:letterHasTranslation", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:letter" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Translation", + "rdfs:label" : "Translation", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:letterHasTranslationValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "rdfs:comment" : "Translation", + "rdfs:label" : "Translation", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:letterIsPublished", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:publishedLetter" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Letter is published", + "rdfs:label" : "Letter is published", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:letterIsPublishedValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "rdfs:comment" : "Letter is published", + "rdfs:label" : "Letter is published", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:letterIsReplyTo", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:letter" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Letter is reply to another letter", + "rdfs:label" : "Reply to", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:letterIsReplyToValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:writtenSource" + }, + "rdfs:comment" : "Letter is reply to another letter", + "rdfs:label" : "Reply to", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:location", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:writtenSource" + }, + "salsah-gui:guiAttribute" : [ "cols=60", "rows=4", "wrap=soft" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Textarea" + }, + "rdfs:comment" : "Place where the physical original is located ", + "rdfs:label" : "Location", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:manuscript", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "manuscript.gif", + "rdfs:comment" : "Diese Resource-Klasse beschreibt ein Manuskript", + "rdfs:label" : "Manuscript", + "rdfs:subClassOf" : [ { + "@id" : "beol:writtenSource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:manuscriptHasArchive" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:manuscriptHasArchiveValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:title" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasAuthor" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasAuthorValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:manuscriptStartFolium" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:creationDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:manuscriptEndFolium" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 3, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:location" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:manuscriptAdditionalFolium" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 4, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasText" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:manuscriptHasShelfMark" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:mentionedIn" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 6, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:comment" + } + } ] + }, { + "@id" : "beol:manuscriptAdditionalFolium", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:manuscript" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents an additional folium.", + "rdfs:label" : "Additional Folium", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:manuscriptEndFolium", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:manuscript" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents the last folium.", + "rdfs:label" : "End Folium", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:manuscriptHasArchive", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:Archive" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Represents the archive where manuscript is stored.", + "rdfs:label" : "Archive of Manuscript", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:manuscriptHasArchiveValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "rdfs:comment" : "Represents the archive where manuscript is stored.", + "rdfs:label" : "Archive of Manuscript", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:manuscriptHasShelfMark", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:manuscript" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents the shelf mark of manuscript in archive.", + "rdfs:label" : "Shelfmark", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:manuscriptStartFolium", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:manuscript" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents the start folium.", + "rdfs:label" : "Start Folium", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:mentionedIn", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents where the resource is mentioned .", + "rdfs:label" : "Mentioned In", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:mentionsPerson", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:person" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "mentioned person", + "rdfs:label" : "Mentioned person", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "beol:mentionsPersonValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:letter" + }, + "rdfs:comment" : "mentioned person", + "rdfs:label" : "Mentioned person", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "beol:page", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A page is a part of a convolute", + "rdfs:label" : "Page", + "rdfs:subClassOf" : [ { + "@id" : "beol:documentImage" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasStillImageFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 1, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:pagenum" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:partOf" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:partOfValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 3, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:seqnum" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:comment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:pagenum", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:documentImage" + }, + "salsah-gui:guiAttribute" : [ "maxlength=8", "size=8" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "A distinct identification of a page", + "rdfs:label" : "Page identifier", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:partOf", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "beol:writtenSource" + }, + "knora-api:subjectType" : { + "@id" : "beol:documentImage" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Represents a relation to another resource of which this resource is a part (dependent)", + "rdfs:label" : "is a part of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:isPartOf" + } + }, { + "@id" : "beol:partOfValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:documentImage" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Diese Property bezeichnet eine Verbindung zu einer anderen Resource, in dem ausgesagt wird, dass die vorliegende Resource ein integraler Teil der anderen Resource ist. Zum Beispiel ist eine Buchseite ein integraler Bestandteil genau eines Buches.", + "rdfs:label" : "is a part of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:isPartOfValue" + } + }, { + "@id" : "beol:person", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "person.png", + "rdfs:comment" : "A resource representing a person", + "rdfs:label" : "Person", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@id" : "http://xmlns.com/foaf/0.1/Person" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasFamilyName" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasGivenName" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:personHasTitle" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasAlternativeName" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasIAFIdentifier" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 6, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasBirthDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 7, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasDeathDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 8, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasFloruitDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 9, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasMarriageDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 10, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasBirthPlace" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 11, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasDeathPlace" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 12, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasFloruitPlace" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasMarriagePlace" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 14, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSonValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSon" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 16, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasDictionaryEntries" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 17, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:comment" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 18, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:mentionedIn" + } + } ] + }, { + "@id" : "beol:personHasTitle", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:person" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents title of person.", + "rdfs:label" : "Title", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:publishedLetter", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "letter.png", + "rdfs:comment" : "A resource representing a published letter", + "rdfs:label" : "Published Letter", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:isPublishedIn" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:isPublishedInValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:publishedLetterHasSeqnum" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:publishedLetterStartPage" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:publishedLetterEndPage" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:publishedLetterEndPage", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:publishedLetter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents end-page of letter in Edition.", + "rdfs:label" : "End Page in Edition", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:publishedLetterHasSeqnum", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:publishedLetter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents sequence number of letter in Edition.", + "rdfs:label" : "Sequence Number in Edition", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:publishedLetterStartPage", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:publishedLetter" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Represents start page of letter in Edition.", + "rdfs:label" : "Start Page in Edition", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "beol:section", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource representing a section", + "rdfs:label" : "Section", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSubject" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:sectionHasTitle" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasText" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSection" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasSectionValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + }, { + "@id" : "beol:sectionHasTitle", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:section" + }, + "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Title", + "rdfs:label" : "Title", + "rdfs:subPropertyOf" : [ { + "@id" : "knora-api:hasValue" + }, { + "@id" : "http://purl.org/dc/terms/title" + } ] + }, { + "@id" : "beol:seqnum", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:IntValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:documentImage" + }, + "salsah-gui:guiAttribute" : [ "max=-1", "min=0" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Spinbox" + }, + "rdfs:comment" : "This property stands for the position within a set of rdered items (resoucres)", + "rdfs:label" : "Sequence number", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:seqnum" } - ], - "@id": "http://0.0.0.0:3333/ontology/0801/beol/v2", - "@type": "owl:Ontology", - "knora-api:attachedToProject": { - "@id": "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF" + }, { + "@id" : "beol:standoffEntityType", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffEntityTag" + }, + "rdfs:comment" : "settings type of an entity" + }, { + "@id" : "beol:standoffFontType", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffFontTag" + }, + "rdfs:comment" : "Represents a webfont type for special character" + }, { + "@id" : "beol:standoffTableCellTagHasAlignment", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableCellTag" + }, + "rdfs:comment" : "settings for the alignment of a table cell" + }, { + "@id" : "beol:standoffTableCellTagHasColumnSpan", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableCellTag" + }, + "rdfs:comment" : "settings for column span of a table cell" + }, { + "@id" : "beol:standoffTableCellTagHasRowSpan", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableCellTag" + }, + "rdfs:comment" : "settings for row span of a table cell" + }, { + "@id" : "beol:standoffTableCellTagHasStyle", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableCellTag" + }, + "rdfs:comment" : "settings for the style of a table cell" + }, { + "@id" : "beol:standoffTableCellTagHasVerticalAlignment", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableCellTag" + }, + "rdfs:comment" : "settings for the vertical alignment of a table cell" + }, { + "@id" : "beol:standoffTableCellTagHasWidth", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableCellTag" + }, + "rdfs:comment" : "settings for the width of a table cell" + }, { + "@id" : "beol:standoffTableTagHasBorder", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableTag" + }, + "rdfs:comment" : "border settings of a table" + }, { + "@id" : "beol:standoffTableTagHasCellPadding", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "beol:StandoffTableTag" + }, + "rdfs:comment" : "table cell padding" + }, { + "@id" : "beol:title", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "beol:writtenSource" + }, + "salsah-gui:guiAttribute" : [ "maxlength=255", "size=80" ], + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:SimpleText" + }, + "rdfs:comment" : "Title", + "rdfs:label" : "Title", + "rdfs:subPropertyOf" : [ { + "@id" : "knora-api:hasValue" + }, { + "@id" : "http://purl.org/dc/terms/title" + } ] + }, { + "@id" : "beol:writtenSource", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "Written source", + "rdfs:label" : "Written source", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:title" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasAuthor" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 1, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "beol:hasAuthorValue" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 2, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:creationDate" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 3, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:location" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 4, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:hasText" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 5, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "beol:beolIDs" + } + } ] + } ], + "@id" : "http://0.0.0.0:3333/ontology/0801/beol/v2", + "@type" : "owl:Ontology", + "knora-api:attachedToProject" : { + "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF" }, - "rdfs:label": "The BEOL ontology", - "@context": { - "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "standoff": "http://api.knora.org/ontology/standoff/v2#", - "knora-api": "http://api.knora.org/ontology/knora-api/v2#", - "owl": "http://www.w3.org/2002/07/owl#", - "salsah-gui": "http://api.knora.org/ontology/salsah-gui/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#", - "biblio": "http://0.0.0.0:3333/ontology/0802/biblio/v2#" + "rdfs:label" : "The BEOL ontology", + "@context" : { + "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "standoff" : "http://api.knora.org/ontology/standoff/v2#", + "knora-api" : "http://api.knora.org/ontology/knora-api/v2#", + "owl" : "http://www.w3.org/2002/07/owl#", + "salsah-gui" : "http://api.knora.org/ontology/salsah-gui/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#", + "biblio" : "http://0.0.0.0:3333/ontology/0801/biblio/v2#" } } diff --git a/projects/knora/core/src/lib/test-data/ontologycache/knora-api-complex-onto.json b/projects/knora/core/src/lib/test-data/ontologycache/knora-api-complex-onto.json index 4417ea14b..308660916 100644 --- a/projects/knora/core/src/lib/test-data/ontologycache/knora-api-complex-onto.json +++ b/projects/knora/core/src/lib/test-data/ontologycache/knora-api-complex-onto.json @@ -1,4521 +1,5271 @@ { - "@graph" : [ { - "@id" : "knora-api:Annotation", - "@type" : "owl:Class", - "knora-api:canBeInstantiated" : true, - "knora-api:isResourceClass" : true, - "rdfs:comment" : "A generic class for representing annotations", - "rdfs:label" : "Annotation", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Resource" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasComment" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:isAnnotationOf" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:isAnnotationOfValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:AudioFileValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents an audio file", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:FileValue" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:audioFileValueHasDuration" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueAsUrl" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueHasFilename" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueIsPreview" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:AudioRepresentation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "Represents a file containing audio data", - "rdfs:label" : "Representation (Audio)", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Representation" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasAudioFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:BooleanBase", - "@type" : "owl:Class", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:booleanValueAsBoolean" - } - } ] - }, { - "@id" : "knora-api:BooleanValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents a boolean value", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:BooleanBase" - }, { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:booleanValueAsBoolean" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:ColorBase", - "@type" : "owl:Class", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:colorValueAsColor" - } - } ] - }, { - "@id" : "knora-api:ColorValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents a color in HTML format, e.g. \"#33eeff\"", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ColorBase" - }, { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:colorValueAsColor" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:DDDFileValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "This represents some 3D-object with mesh data, point cloud, etc.", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:FileValue" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueAsUrl" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueHasFilename" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueIsPreview" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:DDDRepresentation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "Represents a file containg 3D data", - "rdfs:label" : "Representation (3D)", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Representation" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasDDDFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:DateBase", - "@type" : "owl:Class", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasCalendar" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndDay" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndEra" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndMonth" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndYear" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartDay" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartEra" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartMonth" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartYear" - } - } ] - }, { - "@id" : "knora-api:DateValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents a Knora date value", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:DateBase" - }, { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasCalendar" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndDay" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndEra" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndMonth" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndYear" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartDay" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartEra" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartMonth" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartYear" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:DecimalBase", - "@type" : "owl:Class", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:decimalValueAsDecimal" - } - } ] - }, { - "@id" : "knora-api:DecimalValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents an arbitrary-precision decimal value", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:DecimalBase" - }, { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:decimalValueAsDecimal" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:DocumentFileValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:subClassOf" : [ { - "@id" : "knora-api:FileValue" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueAsUrl" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueHasFilename" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueIsPreview" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:DocumentRepresentation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:label" : "Representation (Document)", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Representation" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasDocumentFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:FileValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueAsUrl" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueHasFilename" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueIsPreview" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:ForbiddenResource", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "A ForbiddenResource is a proxy for a resource that the client has insufficient permissions to see.", - "rdfs:label" : "A ForbiddenResource is a proxy for a resource that the client has insufficient permissions to see.", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Resource" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasComment" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:GeomValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents a geometrical objects as JSON string", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:geometryValueAsGeometry" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:GeonameValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:geonameValueAsGeonameCode" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:IntBase", - "@type" : "owl:Class", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intValueAsInt" - } - } ] - }, { - "@id" : "knora-api:IntValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents an integer value", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:IntBase" - }, { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intValueAsInt" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:IntervalBase", - "@type" : "owl:Class", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intervalValueHasEnd" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intervalValueHasStart" - } - } ] - }, { - "@id" : "knora-api:IntervalValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents a time interval, e.g. in an audio recording", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:IntervalBase" - }, { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intervalValueHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intervalValueHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:LinkObj", - "@type" : "owl:Class", - "knora-api:canBeInstantiated" : true, - "knora-api:isResourceClass" : true, - "knora-api:resourceIcon" : "link.gif", - "rdfs:comment" : "Represents a generic link object", - "rdfs:label" : "Link Object", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Resource" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasComment" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasLinkTo" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:LinkValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "A reification node that describes direct links between resources", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Value" - }, { - "@id" : "rdf:Statement" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdf:object" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdf:predicate" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdf:subject" - } - } ] - }, { - "@id" : "knora-api:ListNode", - "@type" : "owl:Class", - "rdfs:comment" : "Represents a flat or hierarchical list", - "rdfs:subClassOf" : { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - } - }, { - "@id" : "knora-api:ListValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:listValueAsListNode" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:listValueAsListNodeLabel" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:MovingImageFileValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents a moving image file", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:FileValue" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueAsUrl" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueHasFilename" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueIsPreview" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:movingImageFileValueHasDimX" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:movingImageFileValueHasDimY" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:movingImageFileValueHasDuration" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:movingImageFileValueHasFps" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:movingImageFileValueHasQualityLevel" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:MovingImageRepresentation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "A resource containing moving image data", - "rdfs:label" : "Representation (Movie)", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Representation" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasMovingImageFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:Region", - "@type" : "owl:Class", - "knora-api:canBeInstantiated" : true, - "knora-api:isResourceClass" : true, - "knora-api:resourceIcon" : "region.gif", - "rdfs:comment" : "Represents a geometric region of a resource. The geometry is represented currently as JSON string.", - "rdfs:label" : "Region", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Resource" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasColor" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasComment" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasGeometry" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:isRegionOf" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:isRegionOfValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:Representation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "A resource that can store one or more files", - "rdfs:label" : "Representation", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Resource" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:Resource", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "Represents something in the world, or an abstract thing", - "rdfs:label" : "Resource", - "rdfs:subClassOf" : [ { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:StandoffBooleanTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents a boolean in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:BooleanBase" - }, { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:booleanValueAsBoolean" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffColorTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents a color in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ColorBase" - }, { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:colorValueAsColor" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffDataTypeTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents a knora-base value type in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:StandoffTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffDateTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents a date in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:DateBase" - }, { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasCalendar" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndDay" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndEra" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndMonth" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasEndYear" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartDay" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartEra" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartMonth" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:dateValueHasStartYear" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffDecimalTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents a decimal (floating point) value in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:DecimalBase" - }, { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:decimalValueAsDecimal" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffIntegerTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents an integer value in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:IntBase" - }, { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intValueAsInt" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffInternalReferenceTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents an internal reference in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasInternalReference" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffIntervalTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents an interval in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:IntervalBase" - }, { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intervalValueHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:intervalValueHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffLinkTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents a reference to a Knora resource in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:StandoffTag" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents a standoff markup tag", - "rdfs:subClassOf" : [ { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - } ] - }, { - "@id" : "knora-api:StandoffUriTag", - "@type" : "owl:Class", - "knora-api:isStandoffClass" : true, - "rdfs:comment" : "Represents an arbitrary URI in a TextValue", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:StandoffDataTypeTag" - }, { - "@id" : "knora-api:UriBase" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEnd" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasEndParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasOriginalXMLID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStart" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartIndex" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasStartParent" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:standoffTagHasUUID" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:uriValueAsUri" - } - } ] - }, { - "@id" : "knora-api:StillImageFileValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "A file containing a two-dimensional still image", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:FileValue" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueAsUrl" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueHasFilename" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueIsPreview" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:stillImageFileValueHasDimX" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:stillImageFileValueHasDimY" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:stillImageFileValueHasIIIFBaseUrl" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:StillImageRepresentation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "A resource that can contain two-dimensional still image files", - "rdfs:label" : "Representation (Image)", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Representation" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasStillImageFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:TextFileValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "A text file such as plain Unicode text, LaTeX, TEI/XML, etc.", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:FileValue" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueAsUrl" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueHasFilename" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:fileValueIsPreview" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:TextRepresentation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "A resource containing text files", - "rdfs:label" : "Representation (Text)", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Representation" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasTextFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:TextValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:subClassOf" : [ { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:textValueAsHtml" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:textValueAsXml" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:textValueHasLanguage" - } - }, { - "@type" : "owl:Restriction", - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:textValueHasStandoff" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:UriBase", - "@type" : "owl:Class", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:uriValueAsUri" - } - } ] - }, { - "@id" : "knora-api:UriValue", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "Represents a URI", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:UriBase" - }, { - "@id" : "knora-api:Value" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:uriValueAsUri" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:User", - "@type" : "owl:Class", - "rdfs:comment" : "Represents a Knora user", - "rdfs:subClassOf" : { - "@id" : "http://xmlns.com/foaf/0.1/Person" - } - }, { - "@id" : "knora-api:Value", - "@type" : "owl:Class", - "knora-api:isValueClass" : true, - "rdfs:comment" : "The base class of classes representing Knora values", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:ValueBase" - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueAsString" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueCreationDate" - } - }, { - "@type" : "owl:Restriction", - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:valueHasComment" - } - } ] - }, { - "@id" : "knora-api:ValueBase", - "@type" : "owl:Class" - }, { - "@id" : "knora-api:XSLTransformation", - "@type" : "owl:Class", - "knora-api:isResourceClass" : true, - "rdfs:comment" : "a TextRepresentation representing an XSL transformation that can be applied to an XML created from standoff. The transformation's result is ecptected to be HTML.", - "rdfs:label" : "a TextRepresentation representing an XSL transformation that can be applied to an XML created from standoff. The transformation's result is ecptected to be HTML.", - "rdfs:subClassOf" : [ { - "@id" : "knora-api:TextRepresentation" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasTextFileValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - } ] - }, { - "@id" : "knora-api:attachedToProject", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:knoraProject" - }, - "rdfs:comment" : "Connects something to a project", - "rdfs:label" : "attached to project" - }, { - "@id" : "knora-api:attachedToUser", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:User" - }, - "rdfs:comment" : "Connects something to a user", - "rdfs:label" : "attached to user" - }, { - "@id" : "knora-api:audioFileValueHasDuration", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:decimal" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:AudioFileValue" - }, - "rdfs:comment" : "The duration of an audio file value.", - "rdfs:label" : "Audio file value has duration", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:booleanValueAsBoolean", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:BooleanValue" - }, - "rdfs:comment" : "Represents the literal boolean value of a BooleanValue.", - "rdfs:label" : "Boolean value as decimal", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:canBeInstantiated", - "@type" : "owl:AnnotationProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "owl:Class" - }, - "rdfs:comment" : "Indicates whether a resource class can be instantiated via the Knora API.", - "rdfs:label" : "can be instantiated" - }, { - "@id" : "knora-api:colorValueAsColor", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:ColorValue" - }, - "rdfs:comment" : "Represents the literal RGB value of a ColorValue.", - "rdfs:label" : "Color value as color", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:creationDate", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:dateTimeStamp" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Indicates when a resource was created" - }, { - "@id" : "knora-api:dateValueHasCalendar", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the calendar of a date value.", - "rdfs:label" : "Date value has calendar", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasEndDay", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the end day of a date value.", - "rdfs:label" : "Date value has end day", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasEndEra", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the end era of a date value.", - "rdfs:label" : "Date value has end era", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasEndMonth", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the end month of a date value.", - "rdfs:label" : "Date value has end month", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasEndYear", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the end year of a date value.", - "rdfs:label" : "Date value has end year", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasStartDay", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the start day of a date value.", - "rdfs:label" : "Date value has start day", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasStartEra", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the start era of a date value.", - "rdfs:label" : "Date value has start era", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasStartMonth", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the start month of a date value.", - "rdfs:label" : "Date value has start month", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:dateValueHasStartYear", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DateValue" - }, - "rdfs:comment" : "Represents the start year of a date value.", - "rdfs:label" : "Date value has start year", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:decimalValueAsDecimal", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:decimal" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DecimalValue" - }, - "rdfs:comment" : "Represents the literal decimal value of a DecimalValue.", - "rdfs:label" : "Decimal value as decimal", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:fileValueAsUrl", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:anyURI" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:FileValue" - }, - "rdfs:comment" : "The URL at which the file can be accessed.", - "rdfs:label" : "File value as URL", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:fileValueHasFilename", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:FileValue" - }, - "rdfs:comment" : "The name of the file that a file value represents.", - "rdfs:label" : "File value has filename", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:fileValueIsPreview", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:FileValue" - }, - "rdfs:comment" : "Indicates whether this is file value is a preview.", - "rdfs:label" : "File value is preview", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:geometryValueAsGeometry", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:GeomValue" - }, - "rdfs:comment" : "Represents a 2D geometry value as JSON.", - "rdfs:label" : "Geometry value as JSON", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:geonameValueAsGeonameCode", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:GeonameValue" - }, - "rdfs:comment" : "Represents the literal Geoname code of a GeonameValue.", - "rdfs:label" : "Geoname value as Geoname code", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:hasAudioFileValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:AudioFileValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:AudioRepresentation" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Fileupload" - }, - "rdfs:comment" : "Connects a Representation to an audio file", - "rdfs:label" : "has audio file", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasFileValue" - } - }, { - "@id" : "knora-api:hasColor", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:ColorValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Region" - }, - "salsah-gui:guiAttribute" : "ncolors=8", - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Colorpicker" - }, - "rdfs:comment" : "Specifies the color of a region.", - "rdfs:label" : "Color", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "knora-api:hasComment", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:TextValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Richtext" - }, - "rdfs:comment" : "Represents a comment on a resource as a knora-base:TextValue", - "rdfs:label" : "Comment", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "knora-api:hasDDDFileValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:DDDFileValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DDDRepresentation" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Fileupload" - }, - "rdfs:comment" : "Connects a Representation to a 3D-file", - "rdfs:label" : "has 3D-file", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasFileValue" - } - }, { - "@id" : "knora-api:hasDocumentFileValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:DocumentFileValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:DocumentRepresentation" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Fileupload" - }, - "rdfs:comment" : "Connects a Representation to a document", - "rdfs:label" : "has document", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasFileValue" - } - }, { - "@id" : "knora-api:hasFileValue", - "@type" : "owl:ObjectProperty", - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:FileValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Representation" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Fileupload" - }, - "rdfs:comment" : "Connects a Representation to a file", - "rdfs:label" : "has file", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "knora-api:hasGeometry", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:GeomValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Region" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Geometry" - }, - "rdfs:comment" : "Represents a geometrical shape.", - "rdfs:label" : "Geometry", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "knora-api:hasIncomingLink", - "@type" : "owl:ObjectProperty", - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Indicates that this resource referred to by another resource", - "rdfs:label" : "has incoming links", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@id" : "knora-api:hasLinkTo", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:Resource" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Represents a direct connection between two resources", - "rdfs:label" : "has Link to", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:resourceProperty" - } - }, { - "@id" : "knora-api:hasLinkToValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Points to a LinkValue reification describing a link between two resources", - "rdfs:label" : "has Link to", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "knora-api:hasMovingImageFileValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:MovingImageFileValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:MovingImageRepresentation" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Fileupload" - }, - "rdfs:comment" : "Connects a Representation to a movie file", - "rdfs:label" : "has movie file", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasFileValue" - } - }, { - "@id" : "knora-api:hasPermissions", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - } - }, { - "@id" : "knora-api:hasRepresentation", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:Representation" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "References an instance of a Representation. A Representation contains the metadata of a digital object (= file) which represents some physical entity such as an image, a sound, an encoded text etc.", - "rdfs:label" : "has Representation", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkTo" - } - }, { - "@id" : "knora-api:hasRepresentationValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@id" : "knora-api:hasStandoffLinkTo", - "@type" : "owl:ObjectProperty", - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:Resource" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Represents a link in standoff markup from one resource to another.", - "rdfs:label" : "has Standoff Link to", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkTo" - } - }, { - "@id" : "knora-api:hasStandoffLinkToValue", - "@type" : "owl:ObjectProperty", - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Represents a link in standoff markup from one resource to another.", - "rdfs:label" : "has Standoff Link to", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@id" : "knora-api:hasStillImageFileValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:StillImageFileValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StillImageRepresentation" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Fileupload" - }, - "rdfs:comment" : "Connects a Representation to an image file", - "rdfs:label" : "has image file", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasFileValue" - } - }, { - "@id" : "knora-api:hasTextFileValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:TextFileValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:TextRepresentation" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Fileupload" - }, - "rdfs:comment" : "Connects a Representation to a text file", - "rdfs:label" : "has text file", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasFileValue" - } - }, { - "@id" : "knora-api:hasValue", - "@type" : "owl:ObjectProperty", - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:Value" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:subPropertyOf" : { - "@id" : "knora-api:resourceProperty" - } - }, { - "@id" : "knora-api:intValueAsInt", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:IntValue" - }, - "rdfs:comment" : "Represents the literal integer value of an IntValue.", - "rdfs:label" : "Integer value as integer", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:isAnnotationOf", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:Resource" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Annotation" - }, - "rdfs:label" : "is Annotation of", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkTo" - } - }, { - "@id" : "knora-api:isAnnotationOfValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Annotation" - }, - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@id" : "knora-api:isEditable", - "@type" : "owl:AnnotationProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "rdf:Property" - }, - "rdfs:comment" : "Indicates whether a property's values can be updated via the Knora API.", - "rdfs:label" : "is editable" - }, { - "@id" : "knora-api:isInherited", - "@type" : "owl:AnnotationProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "owl:Restriction" - }, - "rdfs:comment" : "Indicates whether a cardinality has been inherited from a base class", - "rdfs:label" : "is inherited" - }, { - "@id" : "knora-api:isLinkProperty", - "@type" : "owl:AnnotationProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "owl:ObjectProperty" - }, - "rdfs:comment" : "Indicates whether a property points to a resource", - "rdfs:label" : "is link property" - }, { - "@id" : "knora-api:isLinkValueProperty", - "@type" : "owl:AnnotationProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "owl:ObjectProperty" - }, - "rdfs:comment" : "Indicates whether a property points to a link value (reification)", - "rdfs:label" : "is link value property" - }, { - "@id" : "knora-api:isMainResource", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:boolean" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Indicates if the given resource is the main resource of a request or a resource referred to by a link property." - }, { - "@id" : "knora-api:isPartOf", - "@type" : "owl:ObjectProperty", - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:Resource" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "Indicates that this resource is part of another resource", - "rdfs:label" : "is part of", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkTo" - } - }, { - "@id" : "knora-api:isPartOfValue", - "@type" : "owl:ObjectProperty", - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@id" : "knora-api:isRegionOf", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:Representation" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Region" - }, - "rdfs:comment" : "Region of interest within a digital object (e.g. an image)", - "rdfs:label" : "is region of", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkTo" - } - }, { - "@id" : "knora-api:isRegionOfValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Region" - }, - "rdfs:comment" : "Region of interest within a digital object (e.g. an image)", - "rdfs:label" : "is region of", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasLinkToValue" - } - }, { - "@id" : "knora-api:knoraProject", - "@type" : "owl:Class", - "rdfs:comment" : "Represents a project that uses Knora", - "rdfs:subClassOf" : { - "@id" : "http://xmlns.com/foaf/0.1/Project" - } - }, { - "@id" : "knora-api:lastModificationDate", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:dateTimeStamp" - } - }, { - "@id" : "knora-api:linkValueHasTarget", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:Resource" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:LinkValue" - }, - "rdfs:comment" : "Represents the target resource of a link value.", - "rdfs:label" : "Link value has target", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:linkValueHasTargetIri", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:anyURI" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:LinkValue" - }, - "rdfs:comment" : "Represents the IRI of the target resource of a link value.", - "rdfs:label" : "Link value has target IRI", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:listValueAsListNode", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:ListNode" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:ListValue" - }, - "rdfs:comment" : "Represents a reference to a hierarchical list node.", - "rdfs:label" : "Hierarchical list value as list node", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:listValueAsListNodeLabel", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:ListValue" - }, - "rdfs:comment" : "Represents the name of the list node pointed to.", - "rdfs:label" : "Hierarchical list value as list node name", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:mappingHasName", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "rdfs:comment" : "Represents the name of a mapping", - "rdfs:label" : "Name of a mapping (will be part of the mapping's Iri)" - }, { - "@id" : "knora-api:movingImageFileValueHasDimX", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:MovingImageFileValue" - }, - "rdfs:comment" : "The horizontal dimension of a moving image file value.", - "rdfs:label" : "Moving image file value has X dimension", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:movingImageFileValueHasDimY", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:MovingImageFileValue" - }, - "rdfs:comment" : "The vertical dimension of a moving image file value.", - "rdfs:label" : "Moving image file value has Y dimension", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:movingImageFileValueHasDuration", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:decimal" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:MovingImageFileValue" - }, - "rdfs:comment" : "The duration of a moving image file value.", - "rdfs:label" : "Moving image file value has duration", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:movingImageFileValueHasFps", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:MovingImageFileValue" - }, - "rdfs:comment" : "The number of frames per second in a moving image file value.", - "rdfs:label" : "Moving image file value has frames per second", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:movingImageFileValueHasQualityLevel", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:MovingImageFileValue" - }, - "rdfs:comment" : "The quality level of a moving image file value.", - "rdfs:label" : "Moving image file value has quality level", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:objectType", - "@type" : "rdf:Property", - "rdfs:comment" : "Specifies the required type of the objects of a property", - "rdfs:label" : "Object type" - }, { - "@id" : "knora-api:ontologyName", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "rdfs:comment" : "Represents the short name of an ontology", - "rdfs:label" : "ontology name" - }, { - "@id" : "knora-api:resourceIcon", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "owl:Class" - } - }, { - "@id" : "knora-api:resourceProperty", - "@type" : "owl:ObjectProperty", - "knora-api:isResourceProperty" : true, - "knora-api:subjectType" : { - "@id" : "knora-api:Resource" - }, - "rdfs:comment" : "The base property of properties that point from Knora resources to Knora resources or values. These properties are required to have cardinalities in the resource classes in which they are used." - }, { - "@id" : "knora-api:result", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "rdfs:comment" : "Provides a message indicating that an operation was successful", - "rdfs:label" : "result" - }, { - "@id" : "knora-api:seqnum", - "@type" : "owl:ObjectProperty", - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:IntValue" - }, - "rdfs:comment" : "Indicates the position of a resource within a sequence", - "rdfs:label" : "Sequence number", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:hasValue" - } - }, { - "@id" : "knora-api:standoffTagHasEnd", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:standoffTagHasEndIndex", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:standoffTagHasEndParent", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:StandoffTag" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:standoffTagHasInternalReference", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:StandoffTag" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffInternalReferenceTag" - } - }, { - "@id" : "knora-api:standoffTagHasLink", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:Resource" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffLinkTag" - } - }, { - "@id" : "knora-api:standoffTagHasOriginalXMLID", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:standoffTagHasStart", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:standoffTagHasStartIndex", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:standoffTagHasStartParent", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:StandoffTag" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:standoffTagHasUUID", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StandoffTag" - } - }, { - "@id" : "knora-api:stillImageFileValueHasDimX", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StillImageFileValue" - }, - "rdfs:comment" : "The horizontal dimension of a still image file value.", - "rdfs:label" : "Still image file value has X dimension", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:stillImageFileValueHasDimY", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:integer" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StillImageFileValue" - }, - "rdfs:comment" : "The vertical dimension of a still image file value.", - "rdfs:label" : "Still image file value has Y dimension", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:stillImageFileValueHasIIIFBaseUrl", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:anyURI" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:StillImageFileValue" - }, - "rdfs:comment" : "The IIIF base URL of a still image file value.", - "rdfs:label" : "Still image file value has IIIF base URL", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:subjectType", - "@type" : "rdf:Property", - "rdfs:comment" : "Specifies the required type of the subjects of a property", - "rdfs:label" : "Subject type" - }, { - "@id" : "knora-api:textValueAsHtml", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:TextValue" - }, - "rdfs:comment" : "A text value represented in HTML.", - "rdfs:label" : "Text value as HTML", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:textValueAsXml", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:TextValue" - }, - "rdfs:comment" : "A Text value represented in XML.", - "rdfs:label" : "Text value as XML", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:textValueHasLanguage", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:TextValue" - }, - "rdfs:comment" : "Language code attached to a text value.", - "rdfs:label" : "text value has language", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:textValueHasStandoff", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "knora-api:StandoffTag" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:TextValue" - }, - "rdfs:comment" : "Standoff markup attached to a text value.", - "rdfs:label" : "text value has standoff", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:uriValueAsUri", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:anyURI" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:UriValue" - }, - "rdfs:comment" : "Represents the literal URI value of a UriValue.", - "rdfs:label" : "URI value as URI", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:valueAsString", - "@type" : "owl:ObjectProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Value" - }, - "rdfs:comment" : "A plain string representation of a value" - }, { - "@id" : "knora-api:valueCreationDate", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:dateTimeStamp" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Value" - }, - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - }, { - "@id" : "knora-api:valueHas", - "@type" : "rdf:Property", - "knora-api:subjectType" : { - "@id" : "knora-api:ValueBase" - } - }, { - "@id" : "knora-api:valueHasComment", - "@type" : "owl:DatatypeProperty", - "knora-api:objectType" : { - "@id" : "xsd:string" - }, - "knora-api:subjectType" : { - "@id" : "knora-api:Value" - }, - "rdfs:comment" : "A comment on a value", - "rdfs:subPropertyOf" : { - "@id" : "knora-api:valueHas" - } - } ], - "@id" : "http://api.knora.org/ontology/knora-api/v2", - "@type" : "owl:Ontology", - "knora-api:attachedToProject" : { - "@id" : "http://www.knora.org/ontology/knora-base#SystemProject" - }, - "rdfs:label" : "The knora-api ontology in the complex schema", - "@context" : { - "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "knora-api" : "http://api.knora.org/ontology/knora-api/v2#", - "owl" : "http://www.w3.org/2002/07/owl#", - "salsah-gui" : "http://api.knora.org/ontology/salsah-gui/v2#", - "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", - "xsd" : "http://www.w3.org/2001/XMLSchema#" + "@graph" : [ { + "@id" : "knora-api:Annotation", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A generic class for representing annotations", + "rdfs:label" : "Annotation", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isAnnotationOf" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isAnnotationOfValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:AudioFileValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents an audio file", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:FileValue" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:audioFileValueHasDuration" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueAsUrl" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueHasFilename" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:AudioRepresentation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "Represents a file containing audio data", + "rdfs:label" : "Representation (Audio)", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Representation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasAudioFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:BooleanBase", + "@type" : "owl:Class", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:booleanValueAsBoolean" + } + } ] + }, { + "@id" : "knora-api:BooleanValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents a boolean value", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:BooleanBase" + }, { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:booleanValueAsBoolean" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:ColorBase", + "@type" : "owl:Class", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:colorValueAsColor" + } + } ] + }, { + "@id" : "knora-api:ColorValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents a color in HTML format, e.g. \"#33eeff\"", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ColorBase" + }, { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:colorValueAsColor" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:DDDFileValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "This represents some 3D-object with mesh data, point cloud, etc.", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:FileValue" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueAsUrl" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueHasFilename" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:DDDRepresentation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "Represents a file containg 3D data", + "rdfs:label" : "Representation (3D)", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Representation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasDDDFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:DateBase", + "@type" : "owl:Class", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasCalendar" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndDay" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndEra" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndMonth" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndYear" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartDay" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartEra" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartMonth" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartYear" + } + } ] + }, { + "@id" : "knora-api:DateValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents a Knora date value", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:DateBase" + }, { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasCalendar" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndDay" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndEra" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndMonth" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndYear" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartDay" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartEra" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartMonth" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartYear" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:DecimalBase", + "@type" : "owl:Class", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:decimalValueAsDecimal" + } + } ] + }, { + "@id" : "knora-api:DecimalValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents an arbitrary-precision decimal value", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:DecimalBase" + }, { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:decimalValueAsDecimal" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:DocumentFileValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:subClassOf" : [ { + "@id" : "knora-api:FileValue" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueAsUrl" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueHasFilename" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:DocumentRepresentation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:label" : "Representation (Document)", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Representation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasDocumentFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:FileValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueAsUrl" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueHasFilename" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:ForbiddenResource", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A ForbiddenResource is a proxy for a resource that the client has insufficient permissions to see.", + "rdfs:label" : "A ForbiddenResource is a proxy for a resource that the client has insufficient permissions to see.", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:GeomValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents a geometrical objects as JSON string", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:geometryValueAsGeometry" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:GeonameValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:geonameValueAsGeonameCode" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:IntBase", + "@type" : "owl:Class", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intValueAsInt" + } + } ] + }, { + "@id" : "knora-api:IntValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents an integer value", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:IntBase" + }, { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intValueAsInt" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:IntervalBase", + "@type" : "owl:Class", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intervalValueHasEnd" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intervalValueHasStart" + } + } ] + }, { + "@id" : "knora-api:IntervalValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents a time interval, e.g. in an audio recording", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:IntervalBase" + }, { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intervalValueHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intervalValueHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:LinkObj", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "link.gif", + "rdfs:comment" : "Represents a generic link object", + "rdfs:label" : "Link Object", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:LinkValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "A reification node that describes direct links between resources", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Value" + }, { + "@id" : "rdf:Statement" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdf:object" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdf:predicate" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdf:subject" + } + } ] + }, { + "@id" : "knora-api:ListNode", + "@type" : "owl:Class", + "rdfs:comment" : "Represents a flat or hierarchical list", + "rdfs:subClassOf" : [ { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:ListValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:listValueAsListNode" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:listValueAsListNodeLabel" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:MovingImageFileValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents a moving image file", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:FileValue" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueAsUrl" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueHasFilename" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:movingImageFileValueHasDimX" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:movingImageFileValueHasDimY" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:movingImageFileValueHasDuration" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:movingImageFileValueHasFps" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:movingImageFileValueHasQualityLevel" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:MovingImageRepresentation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource containing moving image data", + "rdfs:label" : "Representation (Movie)", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Representation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasMovingImageFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:Region", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "region.gif", + "rdfs:comment" : "Represents a geometric region of a resource. The geometry is represented currently as JSON string.", + "rdfs:label" : "Region", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasColor" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasComment" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasGeometry" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isRegionOf" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isRegionOfValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:Representation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource that can store one or more files", + "rdfs:label" : "Representation", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Resource" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:Resource", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "Represents something in the world, or an abstract thing", + "rdfs:label" : "Resource", + "rdfs:subClassOf" : [ { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:StandoffBooleanTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents a boolean in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:BooleanBase" + }, { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:booleanValueAsBoolean" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffColorTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents a color in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ColorBase" + }, { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:colorValueAsColor" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffDataTypeTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents a knora-base value type in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffDateTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents a date in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:DateBase" + }, { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasCalendar" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndDay" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndEra" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndMonth" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasEndYear" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartDay" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartEra" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartMonth" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:dateValueHasStartYear" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffDecimalTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents a decimal (floating point) value in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:DecimalBase" + }, { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:decimalValueAsDecimal" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffIntegerTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents an integer value in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:IntBase" + }, { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intValueAsInt" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffInternalReferenceTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents an internal reference in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasInternalReference" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffIntervalTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents an interval in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:IntervalBase" + }, { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intervalValueHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:intervalValueHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffLinkTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents a reference to a Knora resource in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffTag" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents a standoff markup tag", + "rdfs:subClassOf" : [ { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + } ] + }, { + "@id" : "knora-api:StandoffUriTag", + "@type" : "owl:Class", + "knora-api:isStandoffClass" : true, + "rdfs:comment" : "Represents an arbitrary URI in a TextValue", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:StandoffDataTypeTag" + }, { + "@id" : "knora-api:UriBase" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEnd" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasEndParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasOriginalXMLID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStart" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartIndex" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasStartParent" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:standoffTagHasUUID" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:uriValueAsUri" + } + } ] + }, { + "@id" : "knora-api:StillImageFileValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "A file containing a two-dimensional still image", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:FileValue" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueAsUrl" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueHasFilename" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:stillImageFileValueHasDimX" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:stillImageFileValueHasDimY" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:stillImageFileValueHasIIIFBaseUrl" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:StillImageRepresentation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource that can contain two-dimensional still image files", + "rdfs:label" : "Representation (Image)", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Representation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasStillImageFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:TextFileValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "A text file such as plain Unicode text, LaTeX, TEI/XML, etc.", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:FileValue" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueAsUrl" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:fileValueHasFilename" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:TextRepresentation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "A resource containing text files", + "rdfs:label" : "Representation (Text)", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Representation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasTextFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:TextValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:subClassOf" : [ { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:textValueAsHtml" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:textValueAsXml" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:textValueHasLanguage" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:textValueHasMapping" + } + }, { + "@type" : "owl:Restriction", + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:textValueHasStandoff" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:UriBase", + "@type" : "owl:Class", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:uriValueAsUri" + } + } ] + }, { + "@id" : "knora-api:UriValue", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "Represents a URI", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:UriBase" + }, { + "@id" : "knora-api:Value" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:uriValueAsUri" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:User", + "@type" : "owl:Class", + "rdfs:comment" : "Represents a Knora user", + "rdfs:subClassOf" : [ { + "@id" : "http://xmlns.com/foaf/0.1/Person" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:username" + } + } ] + }, { + "@id" : "knora-api:Value", + "@type" : "owl:Class", + "knora-api:isValueClass" : true, + "rdfs:comment" : "The base class of classes representing Knora values", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:ValueBase" + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueAsString" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueCreationDate" + } + }, { + "@type" : "owl:Restriction", + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:valueHasComment" + } + } ] + }, { + "@id" : "knora-api:ValueBase", + "@type" : "owl:Class" + }, { + "@id" : "knora-api:XSLTransformation", + "@type" : "owl:Class", + "knora-api:isResourceClass" : true, + "rdfs:comment" : "a TextRepresentation representing an XSL transformation that can be applied to an XML created from standoff. The transformation's result is ecptected to be HTML.", + "rdfs:label" : "a TextRepresentation representing an XSL transformation that can be applied to an XML created from standoff. The transformation's result is ecptected to be HTML.", + "rdfs:subClassOf" : [ { + "@id" : "knora-api:TextRepresentation" + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasTextFileValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + } ] + }, { + "@id" : "knora-api:attachedToProject", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:knoraProject" + }, + "rdfs:comment" : "Connects something to a project", + "rdfs:label" : "attached to project" + }, { + "@id" : "knora-api:attachedToUser", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:User" + }, + "rdfs:comment" : "Connects something to a user", + "rdfs:label" : "attached to user" + }, { + "@id" : "knora-api:audioFileValueHasDuration", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:decimal" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:AudioFileValue" + }, + "rdfs:comment" : "The duration of an audio file value.", + "rdfs:label" : "Audio file value has duration", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:booleanValueAsBoolean", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:BooleanValue" + }, + "rdfs:comment" : "Represents the literal boolean value of a BooleanValue.", + "rdfs:label" : "Boolean value as decimal", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:canBeInstantiated", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "owl:Class" + }, + "rdfs:comment" : "Indicates whether a resource class can be instantiated via the Knora API.", + "rdfs:label" : "can be instantiated" + }, { + "@id" : "knora-api:colorValueAsColor", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:ColorValue" + }, + "rdfs:comment" : "Represents the literal RGB value of a ColorValue.", + "rdfs:label" : "Color value as color", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:creationDate", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:dateTimeStamp" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Indicates when a resource was created" + }, { + "@id" : "knora-api:dateValueHasCalendar", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the calendar of a date value.", + "rdfs:label" : "Date value has calendar", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasEndDay", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the end day of a date value.", + "rdfs:label" : "Date value has end day", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasEndEra", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the end era of a date value.", + "rdfs:label" : "Date value has end era", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasEndMonth", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the end month of a date value.", + "rdfs:label" : "Date value has end month", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasEndYear", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the end year of a date value.", + "rdfs:label" : "Date value has end year", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasStartDay", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the start day of a date value.", + "rdfs:label" : "Date value has start day", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasStartEra", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the start era of a date value.", + "rdfs:label" : "Date value has start era", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasStartMonth", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the start month of a date value.", + "rdfs:label" : "Date value has start month", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:dateValueHasStartYear", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DateValue" + }, + "rdfs:comment" : "Represents the start year of a date value.", + "rdfs:label" : "Date value has start year", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:decimalValueAsDecimal", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:decimal" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DecimalValue" + }, + "rdfs:comment" : "Represents the literal decimal value of a DecimalValue.", + "rdfs:label" : "Decimal value as decimal", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:deleteComment", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "rdfs:comment" : "A comment explaining why a resource or value was marked as deleted" + }, { + "@id" : "knora-api:deleteDate", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:dateTimeStamp" + }, + "rdfs:comment" : "Indicates when a resource or value was deleted" + }, { + "@id" : "knora-api:fileValueAsUrl", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:anyURI" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:FileValue" + }, + "rdfs:comment" : "The URL at which the file can be accessed.", + "rdfs:label" : "File value as URL", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:fileValueHasFilename", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:FileValue" + }, + "rdfs:comment" : "The name of the file that a file value represents.", + "rdfs:label" : "File value has filename", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:geometryValueAsGeometry", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:GeomValue" + }, + "rdfs:comment" : "Represents a 2D geometry value as JSON.", + "rdfs:label" : "Geometry value as JSON", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:geonameValueAsGeonameCode", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:GeonameValue" + }, + "rdfs:comment" : "Represents the literal Geoname code of a GeonameValue.", + "rdfs:label" : "Geoname value as Geoname code", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:hasAudioFileValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:AudioFileValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:AudioRepresentation" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Fileupload" + }, + "rdfs:comment" : "Connects a Representation to an audio file", + "rdfs:label" : "has audio file", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasFileValue" + } + }, { + "@id" : "knora-api:hasColor", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:ColorValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Region" + }, + "salsah-gui:guiAttribute" : "ncolors=8", + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Colorpicker" + }, + "rdfs:comment" : "Specifies the color of a region.", + "rdfs:label" : "Color", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "knora-api:hasComment", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Richtext" + }, + "rdfs:comment" : "Represents a comment on a resource as a knora-base:TextValue", + "rdfs:label" : "Comment", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "knora-api:hasDDDFileValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DDDFileValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DDDRepresentation" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Fileupload" + }, + "rdfs:comment" : "Connects a Representation to a 3D-file", + "rdfs:label" : "has 3D-file", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasFileValue" + } + }, { + "@id" : "knora-api:hasDocumentFileValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:DocumentFileValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:DocumentRepresentation" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Fileupload" + }, + "rdfs:comment" : "Connects a Representation to a document", + "rdfs:label" : "has document", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasFileValue" + } + }, { + "@id" : "knora-api:hasFileValue", + "@type" : "owl:ObjectProperty", + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:FileValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Representation" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Fileupload" + }, + "rdfs:comment" : "Connects a Representation to a file", + "rdfs:label" : "has file", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "knora-api:hasGeometry", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:GeomValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Region" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Geometry" + }, + "rdfs:comment" : "Represents a geometrical shape.", + "rdfs:label" : "Geometry", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "knora-api:hasIncomingLink", + "@type" : "owl:ObjectProperty", + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Indicates that this resource referred to by another resource", + "rdfs:label" : "has incoming links", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "knora-api:hasLinkTo", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:Resource" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Represents a direct connection between two resources", + "rdfs:label" : "has Link to", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:resourceProperty" + } + }, { + "@id" : "knora-api:hasLinkToValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Points to a LinkValue reification describing a link between two resources", + "rdfs:label" : "has Link to", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "knora-api:hasMovingImageFileValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:MovingImageFileValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:MovingImageRepresentation" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Fileupload" + }, + "rdfs:comment" : "Connects a Representation to a movie file", + "rdfs:label" : "has movie file", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasFileValue" + } + }, { + "@id" : "knora-api:hasPermissions", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + } + }, { + "@id" : "knora-api:hasRepresentation", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:Representation" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "References an instance of a Representation. A Representation contains the metadata of a digital object (= file) which represents some physical entity such as an image, a sound, an encoded text etc.", + "rdfs:label" : "has Representation", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "knora-api:hasRepresentationValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "knora-api:hasStandoffLinkTo", + "@type" : "owl:ObjectProperty", + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:Resource" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Represents a link in standoff markup from one resource to another.", + "rdfs:label" : "has Standoff Link to", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "knora-api:hasStandoffLinkToValue", + "@type" : "owl:ObjectProperty", + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Represents a link in standoff markup from one resource to another.", + "rdfs:label" : "has Standoff Link to", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "knora-api:hasStillImageFileValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:StillImageFileValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StillImageRepresentation" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Fileupload" + }, + "rdfs:comment" : "Connects a Representation to an image file", + "rdfs:label" : "has image file", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasFileValue" + } + }, { + "@id" : "knora-api:hasTextFileValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:TextFileValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:TextRepresentation" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Fileupload" + }, + "rdfs:comment" : "Connects a Representation to a text file", + "rdfs:label" : "has text file", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasFileValue" + } + }, { + "@id" : "knora-api:hasValue", + "@type" : "owl:ObjectProperty", + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:Value" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:subPropertyOf" : { + "@id" : "knora-api:resourceProperty" + } + }, { + "@id" : "knora-api:intValueAsInt", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:IntValue" + }, + "rdfs:comment" : "Represents the literal integer value of an IntValue.", + "rdfs:label" : "Integer value as integer", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:isAnnotationOf", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:Resource" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Annotation" + }, + "rdfs:label" : "is Annotation of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "knora-api:isAnnotationOfValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Annotation" + }, + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "knora-api:isBuiltIn", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "rdfs:comment" : "Indicates whether an ontology is built into Knora", + "rdfs:label" : "is shared" + }, { + "@id" : "knora-api:isDeleted", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "rdfs:comment" : "Exists and is true if the resource has been deleted" + }, { + "@id" : "knora-api:isEditable", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "rdf:Property" + }, + "rdfs:comment" : "Indicates whether a property's values can be updated via the Knora API.", + "rdfs:label" : "is editable" + }, { + "@id" : "knora-api:isInherited", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "owl:Restriction" + }, + "rdfs:comment" : "Indicates whether a cardinality has been inherited from a base class", + "rdfs:label" : "is inherited" + }, { + "@id" : "knora-api:isLinkProperty", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "owl:ObjectProperty" + }, + "rdfs:comment" : "Indicates whether a property points to a resource", + "rdfs:label" : "is link property" + }, { + "@id" : "knora-api:isLinkValueProperty", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "owl:ObjectProperty" + }, + "rdfs:comment" : "Indicates whether a property points to a link value (reification)", + "rdfs:label" : "is link value property" + }, { + "@id" : "knora-api:isMainResource", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Indicates if the given resource is the main resource of a request or a resource referred to by a link property." + }, { + "@id" : "knora-api:isPartOf", + "@type" : "owl:ObjectProperty", + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:Resource" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "Indicates that this resource is part of another resource", + "rdfs:label" : "is part of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "knora-api:isPartOfValue", + "@type" : "owl:ObjectProperty", + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "knora-api:isRegionOf", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:Representation" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Region" + }, + "rdfs:comment" : "Region of interest within a digital object (e.g. an image)", + "rdfs:label" : "is region of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkTo" + } + }, { + "@id" : "knora-api:isRegionOfValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Region" + }, + "rdfs:comment" : "Region of interest within a digital object (e.g. an image)", + "rdfs:label" : "is region of", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasLinkToValue" + } + }, { + "@id" : "knora-api:isResourceClass", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "owl:Class" + }, + "rdfs:comment" : "Indicates whether class is a subclass of Resource.", + "rdfs:label" : "is resource class" + }, { + "@id" : "knora-api:isShared", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "rdfs:comment" : "Indicates whether an ontology can be shared by multiple projects", + "rdfs:label" : "is shared" + }, { + "@id" : "knora-api:isStandoffClass", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "owl:Class" + }, + "rdfs:comment" : "Indicates whether class is a subclass of StandoffTag.", + "rdfs:label" : "is standoff class" + }, { + "@id" : "knora-api:isValueClass", + "@type" : "owl:AnnotationProperty", + "knora-api:objectType" : { + "@id" : "xsd:boolean" + }, + "knora-api:subjectType" : { + "@id" : "owl:Class" + }, + "rdfs:comment" : "Indicates whether class is a subclass of Value.", + "rdfs:label" : "is value class" + }, { + "@id" : "knora-api:knoraProject", + "@type" : "owl:Class", + "rdfs:comment" : "Represents a project that uses Knora", + "rdfs:subClassOf" : { + "@id" : "http://xmlns.com/foaf/0.1/Project" + } + }, { + "@id" : "knora-api:lastModificationDate", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:dateTimeStamp" + } + }, { + "@id" : "knora-api:linkValueHasTarget", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:Resource" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:LinkValue" + }, + "rdfs:comment" : "Represents the target resource of a link value.", + "rdfs:label" : "Link value has target", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:linkValueHasTargetIri", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:anyURI" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:LinkValue" + }, + "rdfs:comment" : "Represents the IRI of the target resource of a link value.", + "rdfs:label" : "Link value has target IRI", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:listValueAsListNode", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:ListNode" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:ListValue" + }, + "rdfs:comment" : "Represents a reference to a hierarchical list node.", + "rdfs:label" : "Hierarchical list value as list node", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:listValueAsListNodeLabel", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:ListValue" + }, + "rdfs:comment" : "Represents the name of the list node pointed to.", + "rdfs:label" : "Hierarchical list value as list node name", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:mappingHasName", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "rdfs:comment" : "Represents the name of a mapping", + "rdfs:label" : "Name of a mapping (will be part of the mapping's Iri)" + }, { + "@id" : "knora-api:movingImageFileValueHasDimX", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:MovingImageFileValue" + }, + "rdfs:comment" : "The horizontal dimension of a moving image file value.", + "rdfs:label" : "Moving image file value has X dimension", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:movingImageFileValueHasDimY", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:MovingImageFileValue" + }, + "rdfs:comment" : "The vertical dimension of a moving image file value.", + "rdfs:label" : "Moving image file value has Y dimension", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:movingImageFileValueHasDuration", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:decimal" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:MovingImageFileValue" + }, + "rdfs:comment" : "The duration of a moving image file value.", + "rdfs:label" : "Moving image file value has duration", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:movingImageFileValueHasFps", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:MovingImageFileValue" + }, + "rdfs:comment" : "The number of frames per second in a moving image file value.", + "rdfs:label" : "Moving image file value has frames per second", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:movingImageFileValueHasQualityLevel", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:MovingImageFileValue" + }, + "rdfs:comment" : "The quality level of a moving image file value.", + "rdfs:label" : "Moving image file value has quality level", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:objectType", + "@type" : "rdf:Property", + "rdfs:comment" : "Specifies the required type of the objects of a property", + "rdfs:label" : "Object type" + }, { + "@id" : "knora-api:ontologyName", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "rdfs:comment" : "Represents the short name of an ontology", + "rdfs:label" : "ontology name" + }, { + "@id" : "knora-api:resourceIcon", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "owl:Class" + } + }, { + "@id" : "knora-api:resourceProperty", + "@type" : "owl:ObjectProperty", + "knora-api:isResourceProperty" : true, + "knora-api:subjectType" : { + "@id" : "knora-api:Resource" + }, + "rdfs:comment" : "The base property of properties that point from Knora resources to Knora resources or values. These properties are required to have cardinalities in the resource classes in which they are used." + }, { + "@id" : "knora-api:result", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "rdfs:comment" : "Provides a message indicating that an operation was successful", + "rdfs:label" : "result" + }, { + "@id" : "knora-api:seqnum", + "@type" : "owl:ObjectProperty", + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:IntValue" + }, + "rdfs:comment" : "Indicates the position of a resource within a sequence", + "rdfs:label" : "Sequence number", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:hasValue" + } + }, { + "@id" : "knora-api:standoffTagHasEnd", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:standoffTagHasEndIndex", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:standoffTagHasEndParent", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:StandoffTag" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:standoffTagHasInternalReference", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:StandoffTag" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffInternalReferenceTag" + } + }, { + "@id" : "knora-api:standoffTagHasLink", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:Resource" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffLinkTag" + } + }, { + "@id" : "knora-api:standoffTagHasOriginalXMLID", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:standoffTagHasStart", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:standoffTagHasStartAncestor", + "@type" : [ "owl:ObjectProperty", "owl:TransitiveProperty" ], + "knora-api:objectType" : { + "@id" : "knora-api:StandoffTag" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:standoffTagHasStartIndex", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:standoffTagHasStartParent", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:StandoffTag" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + }, + "rdfs:subPropertyOf" : { + "@id" : "knora-api:standoffTagHasStartAncestor" + } + }, { + "@id" : "knora-api:standoffTagHasUUID", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StandoffTag" + } + }, { + "@id" : "knora-api:stillImageFileValueHasDimX", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StillImageFileValue" + }, + "rdfs:comment" : "The horizontal dimension of a still image file value.", + "rdfs:label" : "Still image file value has X dimension", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:stillImageFileValueHasDimY", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:integer" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StillImageFileValue" + }, + "rdfs:comment" : "The vertical dimension of a still image file value.", + "rdfs:label" : "Still image file value has Y dimension", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:stillImageFileValueHasIIIFBaseUrl", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:anyURI" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:StillImageFileValue" + }, + "rdfs:comment" : "The IIIF base URL of a still image file value.", + "rdfs:label" : "Still image file value has IIIF base URL", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:subjectType", + "@type" : "rdf:Property", + "rdfs:comment" : "Specifies the required type of the subjects of a property", + "rdfs:label" : "Subject type" + }, { + "@id" : "knora-api:textValueAsHtml", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:TextValue" + }, + "rdfs:comment" : "A text value represented in HTML.", + "rdfs:label" : "Text value as HTML", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:textValueAsXml", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:TextValue" + }, + "rdfs:comment" : "A Text value represented in XML.", + "rdfs:label" : "Text value as XML", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:textValueHasLanguage", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:TextValue" + }, + "rdfs:comment" : "Language code attached to a text value.", + "rdfs:label" : "text value has language", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:textValueHasMapping", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:XMLToStandoffMapping" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:TextValue" + }, + "rdfs:comment" : "Indicates the mapping that is used to convert a text value's markup from from XML to standoff.", + "rdfs:label" : "Text value has mapping", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:textValueHasStandoff", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "knora-api:StandoffTag" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:TextValue" + }, + "rdfs:comment" : "Standoff markup attached to a text value.", + "rdfs:label" : "text value has standoff", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:uriValueAsUri", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:anyURI" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:UriValue" + }, + "rdfs:comment" : "Represents the literal URI value of a UriValue.", + "rdfs:label" : "URI value as URI", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:username", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:User" + }, + "rdfs:comment" : "The username and login name of a user of Knora" + }, { + "@id" : "knora-api:valueAsString", + "@type" : "owl:ObjectProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Value" + }, + "rdfs:comment" : "A plain string representation of a value" + }, { + "@id" : "knora-api:valueCreationDate", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:dateTimeStamp" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Value" + }, + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" + } + }, { + "@id" : "knora-api:valueHas", + "@type" : "rdf:Property", + "knora-api:subjectType" : { + "@id" : "knora-api:ValueBase" + } + }, { + "@id" : "knora-api:valueHasComment", + "@type" : "owl:DatatypeProperty", + "knora-api:objectType" : { + "@id" : "xsd:string" + }, + "knora-api:subjectType" : { + "@id" : "knora-api:Value" + }, + "rdfs:comment" : "A comment on a value", + "rdfs:subPropertyOf" : { + "@id" : "knora-api:valueHas" } + } ], + "@id" : "http://api.knora.org/ontology/knora-api/v2", + "@type" : "owl:Ontology", + "knora-api:attachedToProject" : { + "@id" : "http://www.knora.org/ontology/knora-base#SystemProject" + }, + "knora-api:isBuiltIn" : true, + "rdfs:label" : "The knora-api ontology in the complex schema", + "@context" : { + "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "knora-api" : "http://api.knora.org/ontology/knora-api/v2#", + "owl" : "http://www.w3.org/2002/07/owl#", + "salsah-gui" : "http://api.knora.org/ontology/salsah-gui/v2#", + "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", + "xsd" : "http://www.w3.org/2001/XMLSchema#" + } } diff --git a/projects/knora/core/src/lib/test-data/ontologycache/ontology-metadata.json b/projects/knora/core/src/lib/test-data/ontologycache/ontology-metadata.json index 62cb7e191..15efd4638 100644 --- a/projects/knora/core/src/lib/test-data/ontologycache/ontology-metadata.json +++ b/projects/knora/core/src/lib/test-data/ontologycache/ontology-metadata.json @@ -29,10 +29,10 @@ }, "rdfs:label" : "The BEOL ontology" }, { - "@id" : "http://0.0.0.0:3333/ontology/0802/biblio/v2", + "@id" : "http://0.0.0.0:3333/ontology/0801/biblio/v2", "@type" : "owl:Ontology", "knora-api:attachedToProject" : { - "@id" : "http://rdfh.ch/projects/DczxPs-sR6aZN91qV92ZmQ" + "@id" : "http://rdfh.ch/projects/yTerZGyxjZVqFMNNKXCDPF" }, "rdfs:label" : "The Biblio ontology" }, { @@ -62,6 +62,7 @@ "knora-api:attachedToProject" : { "@id" : "http://www.knora.org/ontology/knora-base#SystemProject" }, + "knora-api:isBuiltIn" : true, "rdfs:label" : "The knora-api ontology in the complex schema" }, { "@id" : "http://api.knora.org/ontology/salsah-gui/v2", @@ -69,6 +70,7 @@ "knora-api:attachedToProject" : { "@id" : "http://www.knora.org/ontology/knora-base#SystemProject" }, + "knora-api:isBuiltIn" : true, "rdfs:label" : "The salsah-gui ontology" }, { "@id" : "http://api.knora.org/ontology/standoff/v2", @@ -76,6 +78,7 @@ "knora-api:attachedToProject" : { "@id" : "http://www.knora.org/ontology/knora-base#SystemProject" }, + "knora-api:isBuiltIn" : true, "rdfs:label" : "The standoff ontology" } ], "@context" : { @@ -84,4 +87,3 @@ "owl" : "http://www.w3.org/2002/07/owl#" } } - diff --git a/projects/knora/core/src/lib/test-data/ontologycache/something-complex-onto.json b/projects/knora/core/src/lib/test-data/ontologycache/something-complex-onto.json index be9d5d527..582846d49 100644 --- a/projects/knora/core/src/lib/test-data/ontologycache/something-complex-onto.json +++ b/projects/knora/core/src/lib/test-data/ontologycache/something-complex-onto.json @@ -1,283 +1,304 @@ { - "@graph" : [ { - "@id" : "something:Something", - "@type" : "owl:Class", - "knora-api:canBeInstantiated" : true, - "knora-api:isResourceClass" : true, - "knora-api:resourceIcon" : "something.png", - "rdfs:comment" : "A something is a thing.", - "rdfs:label" : "Something", - "rdfs:subClassOf" : [ { - "@id" : "anything:Thing" - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToProject" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:attachedToUser" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:creationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasIncomingLink" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:hasPermissions" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkTo" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "knora-api:hasStandoffLinkToValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "knora-api:lastModificationDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "owl:cardinality" : 1, - "owl:onProperty" : { - "@id" : "rdfs:label" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasListItem" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasOtherListItem" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "something:hasOtherSomething" - } - }, { - "@type" : "owl:Restriction", - "salsah-gui:guiOrder" : 0, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "something:hasOtherSomethingValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 2, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasRichtext" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 2, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasText" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 3, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasDate" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 4, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasInteger" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 5, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasDecimal" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 6, - "owl:maxCardinality" : 1, - "owl:onProperty" : { - "@id" : "anything:hasBoolean" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 7, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasUri" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 9, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasInterval" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 10, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasColor" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 13, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasThingPicture" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 13, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasThingPictureValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 15, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:isPartOfOtherThing" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 15, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:isPartOfOtherThingValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 16, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasBlueThingValue" - } - }, { - "@type" : "owl:Restriction", - "knora-api:isInherited" : true, - "salsah-gui:guiOrder" : 63, - "owl:minCardinality" : 0, - "owl:onProperty" : { - "@id" : "anything:hasBlueThing" - } - } ] + "@graph" : [ { + "@id" : "something:Something", + "@type" : "owl:Class", + "knora-api:canBeInstantiated" : true, + "knora-api:isResourceClass" : true, + "knora-api:resourceIcon" : "something.png", + "rdfs:comment" : "A something is a thing.", + "rdfs:label" : "Something", + "rdfs:subClassOf" : [ { + "@id" : "anything:Thing" }, { - "@id" : "something:hasOtherSomething", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "something:Something" - }, - "knora-api:subjectType" : { - "@id" : "something:Something" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:comment" : "Has another something.", - "rdfs:label" : "has other something", - "rdfs:subPropertyOf" : { - "@id" : "anything:hasOtherThing" - } + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToProject" + } }, { - "@id" : "something:hasOtherSomethingValue", - "@type" : "owl:ObjectProperty", - "knora-api:isEditable" : true, - "knora-api:isLinkValueProperty" : true, - "knora-api:isResourceProperty" : true, - "knora-api:objectType" : { - "@id" : "knora-api:LinkValue" - }, - "knora-api:subjectType" : { - "@id" : "something:Something" - }, - "salsah-gui:guiElement" : { - "@id" : "salsah-gui:Searchbox" - }, - "rdfs:comment" : "Has another something.", - "rdfs:label" : "has other something", - "rdfs:subPropertyOf" : { - "@id" : "anything:hasOtherThingValue" - } - } ], - "@id" : "http://0.0.0.0:3333/ontology/0001/something/v2", - "@type" : "owl:Ontology", - "knora-api:attachedToProject" : { - "@id" : "http://rdfh.ch/projects/0001" + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:attachedToUser" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:creationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteComment" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:deleteDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasIncomingLink" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:hasPermissions" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkTo" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "knora-api:hasStandoffLinkToValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:isDeleted" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "knora-api:lastModificationDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "owl:cardinality" : 1, + "owl:onProperty" : { + "@id" : "rdfs:label" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasListItem" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasOtherListItem" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "something:hasOtherSomething" + } + }, { + "@type" : "owl:Restriction", + "salsah-gui:guiOrder" : 0, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "something:hasOtherSomethingValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasRichtext" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 2, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasText" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 3, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDate" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 4, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInteger" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 5, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasDecimal" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 6, + "owl:maxCardinality" : 1, + "owl:onProperty" : { + "@id" : "anything:hasBoolean" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 7, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasUri" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 9, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasInterval" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 10, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasColor" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 11, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeometry" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 12, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasGeoname" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPicture" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 13, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:hasThingPictureValue" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThing" + } + }, { + "@type" : "owl:Restriction", + "knora-api:isInherited" : true, + "salsah-gui:guiOrder" : 15, + "owl:minCardinality" : 0, + "owl:onProperty" : { + "@id" : "anything:isPartOfOtherThingValue" + } + } ] + }, { + "@id" : "something:hasOtherSomething", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "something:Something" + }, + "knora-api:subjectType" : { + "@id" : "something:Something" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" + }, + "rdfs:comment" : "Has another something.", + "rdfs:label" : "has other something", + "rdfs:subPropertyOf" : { + "@id" : "anything:hasOtherThing" + } + }, { + "@id" : "something:hasOtherSomethingValue", + "@type" : "owl:ObjectProperty", + "knora-api:isEditable" : true, + "knora-api:isLinkValueProperty" : true, + "knora-api:isResourceProperty" : true, + "knora-api:objectType" : { + "@id" : "knora-api:LinkValue" + }, + "knora-api:subjectType" : { + "@id" : "something:Something" + }, + "salsah-gui:guiElement" : { + "@id" : "salsah-gui:Searchbox" }, - "rdfs:label" : "The something ontology", - "@context" : { - "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", - "knora-api" : "http://api.knora.org/ontology/knora-api/v2#", - "owl" : "http://www.w3.org/2002/07/owl#", - "something" : "http://0.0.0.0:3333/ontology/0001/something/v2#", - "salsah-gui" : "http://api.knora.org/ontology/salsah-gui/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#" + "rdfs:comment" : "Has another something.", + "rdfs:label" : "has other something", + "rdfs:subPropertyOf" : { + "@id" : "anything:hasOtherThingValue" } + } ], + "@id" : "http://0.0.0.0:3333/ontology/0001/something/v2", + "@type" : "owl:Ontology", + "knora-api:attachedToProject" : { + "@id" : "http://rdfh.ch/projects/0001" + }, + "rdfs:label" : "The something ontology", + "@context" : { + "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "knora-api" : "http://api.knora.org/ontology/knora-api/v2#", + "owl" : "http://www.w3.org/2002/07/owl#", + "something" : "http://0.0.0.0:3333/ontology/0001/something/v2#", + "salsah-gui" : "http://api.knora.org/ontology/salsah-gui/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/projects/knora/core/src/lib/test-data/resources/PageWithImages.json b/projects/knora/core/src/lib/test-data/resources/PageWithImages.json new file mode 100644 index 000000000..e7aa9680a --- /dev/null +++ b/projects/knora/core/src/lib/test-data/resources/PageWithImages.json @@ -0,0 +1,129 @@ +{ + "@id" : "http://rdfh.ch/00505cf0a803", + "@type" : "incunabula:page", + "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." + }, + "incunabula:origname" : { + "@id" : "http://rdfh.ch/00505cf0a803/values/47da3831980e", + "@type" : "knora-api:TextValue", + "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:valueAsString" : "IBB_1_002758751_0241.tif" + }, + "incunabula:page_comment" : { + "@id" : "http://rdfh.ch/00505cf0a803/values/1d9257bae428", + "@type" : "knora-api:TextValue", + "knora-api:attachedToUser" : { + "@id" : "http://rdfh.ch/users/b83acc5f05" + }, + "knora-api:hasPermissions" : "CR knora-base:Creator|D knora-base:ProjectMember|V knora-base:UnknownUser,knora-base:KnownUser", + "knora-api:valueAsString" : "Schramm, Bd. 22, Abb. 1200." + }, + "incunabula:pagenum" : { + "@id" : "http://rdfh.ch/00505cf0a803/values/fe5c3f85970e", + "@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:valueAsString" : "p7v" + }, + "incunabula:partOfValue" : { + "@id" : "http://rdfh.ch/00505cf0a803/values/a2c239c3-eac5-4f9f-88e9-9411835d11ff", + "@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:linkValueHasTarget" : { + "@id" : "http://rdfh.ch/8be1b7cf7103", + "@type" : "incunabula:book", + "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" : "[Das] Narrenschiff (lat.)" + } + }, + "incunabula:seqnum" : { + "@id" : "http://rdfh.ch/00505cf0a803/values/84b0e5f7970e", + "@type" : "knora-api:IntValue", + "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:intValueAsInt" : 241 + }, + "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", + "knora-api:hasStillImageFileValue" : [ { + "@id" : "http://rdfh.ch/00505cf0a803/reps/9e73f9ac2307", + "@type" : "knora-api:StillImageFileValue", + "knora-api:attachedToUser" : { + "@id" : "http://rdfh.ch/users/91e19f1e01" + }, + "knora-api:fileValueAsUrl" : { + "@type" : "xsd:anyURI", + "@value" : "http://localhost:1024/knora/incunabula_0000004096.jp2/full/1954,2630/0/default.jpg" + }, + "knora-api:fileValueHasFilename" : "incunabula_0000004096.jp2", + "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser", + "knora-api:stillImageFileValueHasDimX" : 1954, + "knora-api:stillImageFileValueHasDimY" : 2630, + "knora-api:stillImageFileValueHasIIIFBaseUrl" : { + "@type" : "xsd:anyURI", + "@value" : "http://localhost:1024/knora" + } + }, { + "@id" : "http://rdfh.ch/00505cf0a803/reps/df4da6732307", + "@type" : "knora-api:StillImageFileValue", + "knora-api:attachedToUser" : { + "@id" : "http://rdfh.ch/users/91e19f1e01" + }, + "knora-api:fileValueAsUrl" : { + "@type" : "xsd:anyURI", + "@value" : "http://localhost:1024/knora/incunabula_0000004096.jpg/full/95,128/0/default.jpg" + }, + "knora-api:fileValueHasFilename" : "incunabula_0000004096.jpg", + "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser|RV knora-base:UnknownUser", + "knora-api:stillImageFileValueHasDimX" : 95, + "knora-api:stillImageFileValueHasDimY" : 128, + "knora-api:stillImageFileValueHasIIIFBaseUrl" : { + "@type" : "xsd:anyURI", + "@value" : "http://localhost:1024/knora" + } + } ], + "rdfs:label" : "p7v", + "@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#", + "xsd" : "http://www.w3.org/2001/XMLSchema#" + } +} diff --git a/projects/knora/core/src/lib/test-data/resources/SearchForHolzschnitt.json b/projects/knora/core/src/lib/test-data/resources/SearchForHolzschnitt.json index 05a8ae598..d9eb826da 100644 --- a/projects/knora/core/src/lib/test-data/resources/SearchForHolzschnitt.json +++ b/projects/knora/core/src/lib/test-data/resources/SearchForHolzschnitt.json @@ -1,612 +1,639 @@ - { - "@graph" : [ { - "@id" : "http://rdfh.ch/003c45b4be02", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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", - "@type" : "incunabula:page", - "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" : "\n

Derselbe 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", - "@type" : "incunabula:page", - "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#", - "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#", - "xsd" : "http://www.w3.org/2001/XMLSchema#" + "@graph": [ + { + "@id": "http://rdfh.ch/003c45b4be02", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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", + "@type": "incunabula:page", + "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": "\n

Derselbe Holzschnitt wird auf Seite c7r der lateinischen Ausgabe des Narrenschiffs verwendet.

", + "knora-api:textValueHasMapping": { + "@id": "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", + "@type": "incunabula:page", + "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#", + "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#", + "xsd": "http://www.w3.org/2001/XMLSchema#" } -} +} \ No newline at end of file diff --git a/projects/knora/core/src/lib/test-data/resources/Testthing.json b/projects/knora/core/src/lib/test-data/resources/Testthing.json index eff08a04a..e3e005a89 100644 --- a/projects/knora/core/src/lib/test-data/resources/Testthing.json +++ b/projects/knora/core/src/lib/test-data/resources/Testthing.json @@ -1,176 +1,177 @@ - { - "@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: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" + "@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: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: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:hasColor": { + "@id": "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/TAziKNP8QxuyhC4Qf9-b6w", + "@type": "knora-api:ColorValue", + "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", - "knora-api:dateValueHasEndMonth" : 5, - "knora-api:dateValueHasEndYear" : 2018, - "knora-api:dateValueHasStartDay" : 13, - "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: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", + "knora-api:dateValueHasEndMonth": 5, + "knora-api:dateValueHasEndYear": 2018, + "knora-api:dateValueHasStartDay": 13, + "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:attachedToUser" : { - "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ" + "anything:hasDecimal": { + "@id": "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/bXMwnrHvQH2DMjOFrGmNzg", + "@type": "knora-api:DecimalValue", + "knora-api:attachedToUser": { + "@id": "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ" }, - "knora-api:decimalValueAsDecimal" : { - "@type" : "xsd:decimal", - "@value" : "1.5" + "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" + "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: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: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:hasInterval": { + "@id": "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/RbDKPKHWTC-0lkRKae-E6A", + "@type": "knora-api:IntervalValue", + "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" + "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" + "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" }, - "knora-api:listValueAsListNodeLabel" : "Tree list node 01" + "knora-api:listValueAsListNodeLabel": "Tree list node 01" }, - "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" + "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" + "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" }, - "knora-api:listValueAsListNodeLabel" : "Other Tree list node 01" + "knora-api:listValueAsListNodeLabel": "Other Tree list node 01" }, - "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" + "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:attachedToUser": { + "@id": "http://rdfh.ch/users/9XBCrDV3SRa7kS1WwynB4Q" }, - "knora-api:creationDate" : { - "@type" : "xsd:dateTimeStamp", - "@value" : "2016-10-17T17:16:04.916Z" + "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" + "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" : "\n

test with markup

", - "knora-api:textValueHasMapping" : "http://rdfh.ch/standoff/mappings/StandardMapping" + "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": "\n

test with markup

", + "knora-api:textValueHasMapping": { + "@id": "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: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: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" + "anything:hasUri": { + "@id": "http://rdfh.ch/0001/H6gBWUuJSuuO-CilHV8kQw/values/uBAmWuRhR-eo1u1eP7qqNg", + "@type": "knora-api:UriValue", + "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:attachedToProject": { + "@id": "http://rdfh.ch/projects/0001" }, - "knora-api:attachedToUser" : { - "@id" : "http://rdfh.ch/users/BhkfBc3hTeS_IDo-JgXRbQ" + "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: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#", - "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#" + "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#", + "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#" } -} +} \ No newline at end of file diff --git a/projects/knora/core/src/lib/test-data/resources/TextfileRepresentation.json b/projects/knora/core/src/lib/test-data/resources/TextfileRepresentation.json new file mode 100644 index 000000000..a0e6ed93e --- /dev/null +++ b/projects/knora/core/src/lib/test-data/resources/TextfileRepresentation.json @@ -0,0 +1,36 @@ +{ + "@id" : "http://rdfh.ch/0802/C9bbwuLORoCZZ1DVek1qCQ", + "@type" : "knora-api:XSLTransformation", + "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:33:05.717Z" + }, + "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser", + "knora-api:hasTextFileValue" : { + "@id" : "http://rdfh.ch/0802/C9bbwuLORoCZZ1DVek1qCQ/values/DSQxeAI-T8eYlgXynsQWhw", + "@type" : "knora-api:TextFileValue", + "knora-api:attachedToUser" : { + "@id" : "http://rdfh.ch/users/PSGbemdjZi4kQ6GHJVkLGE" + }, + "knora-api:fileValueAsUrl" : { + "@type" : "xsd:anyURI", + "@value" : "http://localhost:1024/server/knora/LZoxQd7xyNT-EC4kgw2gokg" + }, + "knora-api:fileValueHasFilename" : "LZoxQd7xyNT-EC4kgw2gokg", + "knora-api:hasPermissions" : "CR knora-base:Creator|M knora-base:ProjectMember|V knora-base:KnownUser,knora-base:UnknownUser" + }, + "rdfs:label" : "XSLT", + "@context" : { + "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "rdfs" : "http://www.w3.org/2000/01/rdf-schema#", + "xsd" : "http://www.w3.org/2001/XMLSchema#", + "knora-api" : "http://api.knora.org/ontology/knora-api/v2#" + } +} + diff --git a/projects/knora/viewer/src/lib/resource/still-image/still-image.component.spec.ts b/projects/knora/viewer/src/lib/resource/still-image/still-image.component.spec.ts index 028bf6ef2..00d0a3fbf 100644 --- a/projects/knora/viewer/src/lib/resource/still-image/still-image.component.spec.ts +++ b/projects/knora/viewer/src/lib/resource/still-image/still-image.component.spec.ts @@ -130,8 +130,7 @@ let stillImageFullSize: ReadStillImageFileValue = new ReadStillImageFileValue( 'http://localhost:1024/knora', 'http://localhost:1024/knora/incunabula_0000001722.jp2/full/3428,5061/0/default.jpg', 3428, - 5061, - false + 5061 ); let stillImagePreview: ReadStillImageFileValue = new ReadStillImageFileValue( @@ -141,8 +140,7 @@ let stillImagePreview: ReadStillImageFileValue = new ReadStillImageFileValue( 'http://localhost:1024/knora', 'http://localhost:1024/knora/incunabula_0000001722.jpg/full/86,128/0/default.jpg', 86, - 128, - true + 128 ); let testRegionRectangle: ReadResource = createTestRegionRectangle(); diff --git a/projects/knora/viewer/src/lib/resource/still-image/still-image.component.ts b/projects/knora/viewer/src/lib/resource/still-image/still-image.component.ts index 512f6f167..d91adb441 100644 --- a/projects/knora/viewer/src/lib/resource/still-image/still-image.component.ts +++ b/projects/knora/viewer/src/lib/resource/still-image/still-image.component.ts @@ -99,7 +99,6 @@ export class GeometryForRegion { /** * This component creates a OpenSeadragon viewer instance. * Accepts an array of ReadResource containing (among other resources) ReadStillImageFileValues to be rendered. - * The viewer will not render ReadStillImageFileValues with isPreview == true * @member resources - resources containing (among other resources) the StillImageFileValues and incoming regions to be rendered. (Use as angular @Input data binding property.) */ @Component({ @@ -391,7 +390,7 @@ export class StillImageComponent implements OnInit, OnChanges, OnDestroy { } /** - * Adds all (non-preview) images in this.images to the viewer. + * Adds all images in this.images to the viewer. * Images are positioned in a horizontal row next to each other. */ private openImages(): void {