PREFIX aocat: PREFIX rdfs: PREFIX skos: PREFIX aoprop: PREFIX onto: PREFIX ariadneplus: PREFIX time: CONSTRUCT { aoprop:rdfType "Record" . aoprop:identifier . aoprop:originalId ?originalId . aoprop:issued ?issued . aoprop:modified ?modified . aoprop:partOf ?partOf . aoprop:creator ?creator . ?creator aoprop:name ?creatorName . ?creator aoprop:email ?creatorEmail . aoprop:contributor ?contributor . ?contributor aoprop:name ?contributorName . ?contributor aoprop:email ?contributorEmail . aoprop:legalResponsible ?legalResponsible . ?legalResponsible aoprop:name ?legalResponsibleName . ?legalResponsible aoprop:email ?legalResponsibleEmail . aoprop:owner ?owner . ?owner aoprop:name ?ownerName . ?owner aoprop:email ?ownerEmail . aoprop:publisher ?publisher . ?publisher aoprop:name ?publisherName . ?publisher aoprop:email ?publisherEmail . aoprop:accessPolicy ?accessPolicy . aoprop:accessRights ?accessRights . aoprop:landingPage ?landingPage . aoprop:spatialRegion ?spatialRegion . ?spatialRegion aoprop:placeName ?spatialPlaceName . ?spatialRegion aoprop:spatialCoordinateSystem ?spatialCoordinateSystem . aoprop:spatialRegionPoint ?spatialRegionPoint . ?spatialRegionPoint aoprop:lat ?spatialLocationLat . ?spatialRegionPoint aoprop:lon ?spatialLocationLon . aoprop:spatialRegionBox ?spatialRegionBox . ?spatialRegionBox aoprop:boxMaxLat ?spatialLocationBBMaxLat . ?spatialRegionBox aoprop:boxMaxLon ?spatialLocationBBMaxLon . ?spatialRegionBox aoprop:boxMinLat ?spatialLocationBBMinLat . ?spatialRegionBox aoprop:boxMinLon ?spatialLocationBBMinLon . aoprop:uri ?temporal . ?temporal aoprop:periodName ?temporalPeriodName . ?temporal aoprop:from ?temporalFrom . ?temporal aoprop:until ?temporalUntil . ?temporal aoprop:uri ?temporal . aoprop:uri ?temporalNative . ?temporalNative aoprop:periodName ?temporalNativePeriodName . aoprop:archeologicalResourceType ?archeologicalResourceType . ?archeologicalResourceType aoprop:name ?archeologicalResourceTypeName . aoprop:resourceType ?resourceType . aoprop:nativeSubject ?nativeSubject . ?nativeSubject aoprop:prefLabel ?nativeSubjectPrefLabel . ?nativeSubject aoprop:rdfAbout ?nativeSubject . aoprop:derivedSubject ?derivedSubject . ?derivedSubject aoprop:prefLabel ?derivedSubjectPrefLabel . ?derivedSubject aoprop:source "Getty AAT" . aoprop:aatSubjects ?derivedSubject . ?derivedSubject aoprop:id ?derivedSubject . ?derivedSubject aoprop:label ?derivedSubjectPrefLabel . ?derivedSubject aoprop:lang ?aatSubjectsLang . aoprop:title ?title . aoprop:description ?description . aoprop:language ?language . } from from from from from where { aocat:has_language / skos:prefLabel ?language . aocat:has_original_id ?originalId . aocat:is_part_of ?partOf . aocat:has_creator ?creator . ?creator aocat:has_name ?creatorName . aocat:has_title ?title . aocat:has_type / skos:prefLabel ?resourceType . aocat:has_native_subject ?nativeSubject . ?nativeSubject skos:prefLabel ?nativeSubjectPrefLabel . optional { aocat:has_derived_subject ?derivedSubject . ?derivedSubject skos:prefLabel ?derivedSubjectPrefLabel . } optional { ?creator aocat:has_email ?creatorEmail . } optional { aocat:has_description ?description . } optional { aocat:has_access_policy / rdfs:label ?accessPolicy . } optional { aocat:has_landing_page / rdfs:label ?landingPage . } optional { aocat:has_temporal_coverage ?temporalNative . ?temporalNative aocat:has_native_period / skos:prefLabel ?temporalNativePeriodName . } optional { aocat:has_temporal_coverage ?temporal . ?temporal aocat:has_period / skos:prefLabel ?temporalPeriodName . optional { ?temporal aocat:from ?temporalFrom . ?temporal aocat:until ?temporalUntil . } } { select * where { aocat:was_issued ?issued . aocat:was_modified ?modified . aocat:has_contributor ?contributor . ?contributor aocat:has_name ?contributorName . aocat:has_responsible ?legalResponsible . ?legalResponsible aocat:has_name ?legalResponsibleName . aocat:has_owner ?owner . ?owner aocat:has_name ?ownerName . aocat:has_publisher ?publisher . ?publisher aocat:has_name ?publisherName . aocat:has_access_rights ?accessRights . aocat:has_ARIADNE_subject ?archeologicalResourceType . ?archeologicalResourceType skos:prefLabel ?archeologicalResourceTypeName . optional { ?contributor aocat:has_email ?contributorEmail . } optional { ?legalResponsible aocat:has_email ?legalResponsibleEmail . } optional { ?owner aocat:has_email ?ownerEmail . } optional { ?publisher aocat:has_email ?publisherEmail . } } } { select * where { aocat:has_spatial_coverage ?spatialRegion . ?spatialRegion aocat:has_place_name ?spatialPlaceName . optional { ?spatialRegion aocat:has_coordinate_system ?spatialCoordinateSystem . } optional { aocat:has_spatial_coverage ?spatialRegionPoint . ?spatialRegionPoint aocat:has_latitude ?spatialLocationLat ; aocat:has_longitude ?spatialLocationLon . } optional { aocat:has_spatial_coverage ?spatialRegionBox . ?spatialRegionBox aocat:has_bounding_box_max_lat ?spatialLocationBBMaxLat ; aocat:has_bounding_box_max_lon ?spatialLocationBBMaxLon ; aocat:has_bounding_box_min_lat ?spatialLocationBBMinLat ; aocat:has_bounding_box_min_lon ?spatialLocationBBMinLon ; } } } BIND (lang(?derivedSubjectPrefLabel) as ?aatSubjectsLang) }