PREFIX aocat: PREFIX skos: INSERT { GRAPH { ?record aocat:has_contributor ?contributor . ?contributor aocat:has_name ?contrib . ?record aocat:has_responsible ?legalResponsible . ?legalResponsible aocat:has_name ?resp . ?record aocat:has_owner ?owner . ?owner aocat:has_name ?own . ?record aocat:has_publisher ?publisher . ?publisher aocat:has_name ?pub . ?record aocat:has_creator ?creator . ?creator aocat:has_name ?cre . ?record aocat:has_access_rights ?accessRights . ?record aocat:has_access_policy ?accessPolicy . ?record aocat:has_language ?lang . ?lang skos:prefLabel ?langL } } USING USING WHERE { ?record aocat:is_part_of ?collection . ?collection aocat:has_contributor ?contributor . ?contributor aocat:has_name ?contrib . ?collection aocat:has_responsible ?legalResponsible . ?legalResponsible aocat:has_name ?resp . ?collection aocat:has_owner ?owner . ?owner aocat:has_name ?own . ?collection aocat:has_publisher ?publisher . ?publisher aocat:has_name ?pub . ?collection aocat:has_creator ?creator . ?creator aocat:has_name ?cre . ?collection aocat:has_access_rights ?accessRights . ?collection aocat:has_access_policy ?accessPolicy . ?collection aocat:has_language ?lang . ?lang skos:prefLabel ?langL }; PREFIX aocat: PREFIX rdf: PREFIX rdfs: PREFIX skos: INSERT { GRAPH { ?s aocat:has_type . rdf: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 ?t . } } }; PREFIX aocat: PREFIX rdf: INSERT { GRAPH { ?s aocat:was_modified ?issued . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:was_issued ?issued . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:was_modified ?modified . } } }; PREFIX aocat: PREFIX rdf: PREFIX rdfs: INSERT { GRAPH { ?s aocat:has_spatial_coverage . rdf:type . rdfs:label "Name not provided" . aocat:has_place_name "Name not provided" . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s rdf:type aocat:AO_Individual_Data_Resource . ?s aocat:has_spatial_coverage ?spatialRegion . ?spatialRegion aocat:has_place_name ?placeName . } } }; 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 aocat: INSERT { GRAPH { ?record aocat:has_visual_component ?primary_visual_component . } } USING WHERE { ?record aocat:has_primary_visual_component ?primary_visual_component . MINUS { ?record aocat:has_visual_component ?visual_component . } }; PREFIX skos: PREFIX aocat: PREFIX time: PREFIX rdfs: INSERT { GRAPH { ?temporal aocat:has_period ?native_period . ?temporal aocat:from ?from . ?temporal aocat:until ?until . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period rdfs:label|skos:prefLabel ?native_label . ?temporal aocat:from ?from . ?temporal aocat:until ?until . } }; PREFIX skos: PREFIX aocat: PREFIX time: PREFIX rdfs: INSERT { GRAPH { ?native_period skos:prefLabel ?native_label . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period rdfs:label|skos:prefLabel ?native_label . ?temporal aocat:from ?from . ?temporal aocat:until ?until . } };