@prefix ex: <https://example.com/git/query/payload-stores/> .
@prefix git: <https://ontology.inferal.com/modules/git/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ex:repository
    a git:Repository ;
    git:objectFormat "sha1" ;
    git:defaultObjectStore ex:origin ;
    git:hasObject ex:origin-blob, ex:archived-blob .

ex:origin
    a git:ObjectStore ;
    git:accessIRI "https://objects.example/project.git"^^xsd:anyURI .

ex:archive
    a git:ObjectStore ;
    git:accessIRI "https://archive.example/project.git"^^xsd:anyURI .

ex:origin-blob
    a git:Blob ;
    git:objectId "1111111111111111111111111111111111111111" .

ex:archived-blob
    a git:Blob ;
    git:objectId "2222222222222222222222222222222222222222" ;
    git:payloadStore ex:archive .
