|
IdentityClaim
A claim that something Is-A type
IntroductionIn, for example, the CatalogueAnnotations story, we want to be able to say something like 'Object N in UKIDSS DR3' is-a 'quasar'. What would that look like? Let's suppose that we have addressed the problem of how to refer to that object, say with a URI like http://www.ukidss.org/dr3/objs/N. How about the following? @base <http://blah/my-sac>. @prefix skua: <http://myskua.org/claimtypes/1.0/> . @prefix dc: <http://purl.org/dc/elements/1.1/> . @prefix iau: <http://www.ivoa.net/rdf/Vocabularies/IAUT93#> <> a skua:IdentityClaim; dc:author "Norman Gray"; # author of the claim -- a URI/email would be better skua:subject <http://www.ukidss.org/dr3/objs/N>; skua:type iau:Quasars; dc:date "yyyy-mm-dd". Alternatives and criticisms:
|
► Sign in to add a comment