PREFIX aocat: PREFIX rdf: PREFIX skos: INSERT { GRAPH { ?s aocat:has_type . skos:prefLabel "provided record" . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:has_type . } } }; PREFIX aocat: PREFIX rdf: INSERT { GRAPH { ?s aocat:has_title "Title not provided" . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:has_title ?title . } } }; PREFIX skos: PREFIX aocat: PREFIX rdf: PREFIX rdfs: INSERT { GRAPH { ?s aocat:has_native_subject . skos:prefLabel "Not provided" . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:has_native_subject ?ns . } } }; PREFIX skos: PREFIX aocat: PREFIX rdf: INSERT { GRAPH { ?s ?rel ?agent . ?agent ?p ?o . } } USING USING WHERE { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:is_part_of ?coll . ?coll ?rel ?agent . ?agent rdf:type aocat:AO_Agent . ?agent ?p ?o . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s ?rel ?relAgent . } }; PREFIX skos: PREFIX aocat: PREFIX rdf: INSERT { GRAPH { ?s aocat:has_language ?lang . ?lang skos:prefLabel ?label . } } USING USING WHERE { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:is_part_of ?coll . ?coll aocat:has_language ?lang . ?lang skos:prefLabel ?label . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:has_language ?ns . } }; PREFIX aocat: PREFIX skos: PREFIX rdf: PREFIX rdfs: INSERT { GRAPH { ?s aocat:was_modified "2022"^^xsd:dateTime . } } USING WHERE { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:was_modified ?modified . } }; PREFIX aocat: PREFIX skos: PREFIX rdf: PREFIX rdfs: INSERT { GRAPH { ?s aocat:was_issued "2022"^^xsd:dateTime . } } USING WHERE { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:was_issued ?modified . } }; PREFIX aocat: PREFIX skos: PREFIX rdf: PREFIX rdfs: INSERT { GRAPH { ?s aocat:has_access_rights ?ar . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:is_part_of ?c . MINUS { ?s aocat:has_access_rights ?x } } GRAPH { ?c aocat:has_access_rights ?ar. } }; PREFIX aocat: PREFIX skos: PREFIX rdf: PREFIX rdfs: INSERT { GRAPH { ?s aocat:has_access_policy ?ap . ?ap ?p ?o . } } USING USING WHERE { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:is_part_of ?coll . ?coll aocat:has_access_policy ?ap . ?ap ?p ?o . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:has_access_policy ?thePolicy . } }; PREFIX ariadneplus: PREFIX aocat: PREFIX owl: PREFIX skos: INSERT { GRAPH { ?record aocat:has_derived_subject ?aat . } } USING USING WHERE { { ?record aocat:has_native_subject ?concept . ?concept skos:exactMatch ?aat . } union { ?record aocat:has_native_subject ?concept . ?concept skos:broadMatch ?aat . } union { ?record aocat:has_native_subject ?concept . ?concept skos:closeMatch ?aat . } union { ?record aocat:has_native_subject ?concept . ?concept skos:narrowMatch ?aat . } }; PREFIX skos: PREFIX aocat: PREFIX time: INSERT { GRAPH { ?temporal aocat:has_period ?periodO . ?temporal aocat:from ?temporalFrom . ?temporal aocat:until ?temporalUntil . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period skos:prefLabel ?native_label . optional { GRAPH { ?periodO skos:altLabel ?native_label . ?periodO time:intervalStartedBy / time:hasDateTimeDescription / time:year ?temporalFrom . ?periodO time:intervalFinishedBy / time:hasDateTimeDescription / time:year ?temporalUntil . } } } };