@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dig: <http://www.ics.forth.gr/isl/CRMdig/> .
@prefix la: <https://linked.art/ns/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<https://linked.art/example/person/rembrandt/15> a crm:E21_Person ;
    rdfs:label "Rembrandt" ;
    crm:P138i_has_representation [ a crm:E36_Visual_Item ;
            la:digitally_shown_by [ a dig:D1_Digital_Object ;
                    rdfs:label "Image of Rembrandt" ;
                    dc:format "image/jpeg" ;
                    crm:P2_has_type <http://vocab.getty.edu/aat/300215302> ;
                    la:access_point <https://upload.wikimedia.org/wikipedia/commons/b/bd/Rembrandt_van_Rijn_-_Self-Portrait_-_Google_Art_Project.jpg> ] ] .

<http://vocab.getty.edu/aat/300215302> a crm:E55_Type ;
    rdfs:label "Digital Image" .

<https://upload.wikimedia.org/wikipedia/commons/b/bd/Rembrandt_van_Rijn_-_Self-Portrait_-_Google_Art_Project.jpg> a dig:D1_Digital_Object .

