Skip to content

Instantly share code, notes, and snippets.

@josd
Last active June 10, 2020 08:53
Show Gist options
  • Save josd/370bea4e81a02b979dca1edef616e75f to your computer and use it in GitHub Desktop.
Save josd/370bea4e81a02b979dca1edef616e75f to your computer and use it in GitHub Desktop.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix ex: <http://example.org/test#> .
_:a ex:firstName "John"; ex:lastName "Steinbeck" .
{_:a ex:firstName "John"; ex:lastName "Steinbeck"} ex:until "1968-12-20"^^xsd:date .
{_:a ex:firstName "John"} ex:until "1968-12-20"^^xsd:date .
{_:a ex:lastName "Steinbeck"} ex:until "1968-12-20"^^xsd:date .
<<_:a ex:firstName "John">> ex:until "1968-12-20"^^xsd:date .
<<_:a ex:lastName "Steinbeck">> ex:until "1968-12-20"^^xsd:date .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment