@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix la: <https://linked.art/ns/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<https://linked.art/example/provenance/manet_proust/1> a crm:E7_Activity ;
    rdfs:label "Purchase of Spring by Proust" ;
    crm:P1_is_identified_by [ a crm:E33_E41_Linguistic_Appellation ;
            crm:P190_has_symbolic_content "Purchase of Spring by Proust from Manet" ;
            crm:P2_has_type <http://vocab.getty.edu/aat/300404670> ] ;
    crm:P2_has_type <http://vocab.getty.edu/aat/300055863> ;
    crm:P4_has_time-span [ a crm:E52_Time-Span ;
            crm:P82a_begin_of_the_begin "1881-01-01T00:00:00Z" ;
            crm:P82b_end_of_the_end "1883-12-31T23:59:59Z" ] ;
    crm:P9_consists_of [ a la:Payment ;
            rdfs:label "3000 Francs to Manet" ;
            la:paid_amount [ a crm:E97_Monetary_Amount ;
                    crm:P180_has_currency <http://vocab.getty.edu/aat/300412016> ;
                    crm:P90_has_value 3000 ] ;
            la:paid_from <https://linked.art/example/person/proust> ;
            la:paid_to <https://linked.art/example/person/manet> ],
        [ a crm:E8_Acquisition ;
            rdfs:label "Ownership of Spring to Proust" ;
            crm:P22_transferred_title_to <https://linked.art/example/person/proust> ;
            crm:P23_transferred_title_from <https://linked.art/example/person/manet> ;
            crm:P24_transferred_title_of <https://linked.art/example/object/spring> ] .

<http://vocab.getty.edu/aat/300055863> a crm:E55_Type ;
    rdfs:label "Provenance Activity" .

<http://vocab.getty.edu/aat/300404670> a crm:E55_Type ;
    rdfs:label "Primary Name" .

<http://vocab.getty.edu/aat/300412016> a crm:E98_Currency ;
    rdfs:label "French Francs" .

<https://linked.art/example/object/spring> a crm:E22_Human-Made_Object ;
    rdfs:label "Spring" .

<https://linked.art/example/person/manet> a crm:E21_Person ;
    rdfs:label "Manet" .

<https://linked.art/example/person/proust> a crm:E21_Person ;
    rdfs:label "Proust" .

