Created
December 7, 2016 04:44
-
-
Save howarddierking/7f7d0ffd9e0a38933aad883336a7cbac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix schema: <https://schema.org/> . | |
@prefix ex: <http://foo.com/1.0/> . | |
ex:howard_dierking schema:givenName "Howard" . | |
ex:triple123 rdf:type rdf:Statement . | |
ex:triple123 rdf:subject ex:howard_dierking . | |
ex:triple123 rdf:predicate schema:givenName . | |
ex:triple123 rdf:object "Howard" . | |
ex:triple123 schema:dateModified "2016-12-07" . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment