-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add definitions required for triple terms #30
base: main
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -298,6 +298,13 @@ <h3>rdf:Property</h3> | |||||||||||||
<p><code>rdf:Property</code> is the class of RDF properties. | ||||||||||||||
<code>rdf:Property</code> is an instance of <a href="#ch_class"><code>rdfs:Class</code></a>.</p> | ||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
<section id="ch_proposition"> | ||||||||||||||
<h3>rdf:Proposition</h3> | ||||||||||||||
<p><code>rdf:Proposition</code> is the class of reified triples. | ||||||||||||||
<code>rdf:Proposition</code> is an instance of <a href="#ch_class"><code>rdfs:Class</code></a>.</p> | ||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
<section id="ch_properties"> | ||||||||||||||
|
@@ -403,6 +410,23 @@ <h3>rdf:type</h3> | |||||||||||||
href="#ch_class"><code>rdfs:Class</code></a>.</p> | ||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
<section id="ch_reifies"> | ||||||||||||||
<h3>rdf:reifies</h3> | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
<p><code>rdf:reifies</code> is an instance of <a href="#ch_property"><code>rdf:Property</code></a> | ||||||||||||||
that is used to associate a resource (reifier) with a triple (proposition).</p> | ||||||||||||||
<p>A triple of the form:</p> | ||||||||||||||
<blockquote> <code>R rdf:reifies <<S P O>></code> </blockquote> | ||||||||||||||
<p>states that R is an instance of <a href="#ch_resource"><code>rdfs:Resource</code></a> | ||||||||||||||
and reifies the triple term <code><<S P O>></code>, where S, P, and O represent | ||||||||||||||
the subject, predicate, and object of the reified triple, respectively. The object | ||||||||||||||
Comment on lines
+419
to
+421
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe that the R, S, P, and O variables should be tagged to set them apart from the surrounding text, whether
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe you can use |
||||||||||||||
<code><<S P O>></code> is an instance of the class | ||||||||||||||
<a href="#ch_proposition"><code>rdf:Proposition</code></a>.</p> | ||||||||||||||
<p>The <code><a href="#ch_domain">rdfs:domain</a></code> of | ||||||||||||||
<code>rdf:reifies</code> is <a href="#ch_resource"><code>rdfs:Resource</code></a>. | ||||||||||||||
The <a href="#ch_range"><code>rdfs:range</code></a> of rdf:reifies is | ||||||||||||||
Comment on lines
+425
to
+426
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
<a href="#ch_proposition"><code>rdf:Proposition</code></a>.</p> | ||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
<section id="ch_subclassof"> | ||||||||||||||
<h3>rdfs:subClassOf</h3> | ||||||||||||||
<p>The property <code>rdfs:subClassOf</code> is an instance of <code><a | ||||||||||||||
|
@@ -939,6 +963,10 @@ <h3>RDF classes</h3> | |||||||||||||
<td><a href="#ch_property">rdf:Property</a></td> | ||||||||||||||
<td>The class of RDF properties.</td> | ||||||||||||||
</tr> | ||||||||||||||
<tr> | ||||||||||||||
<td><a href="#ch_reificationproperty">rdf:ReificationProperty</a></td> | ||||||||||||||
<td>The class of properties used for reification in RDF.</td> | ||||||||||||||
</tr> | ||||||||||||||
domel marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
<tr> | ||||||||||||||
<td><a href="#ch_datatype">rdfs:Datatype</a></td> | ||||||||||||||
<td>The class of RDF datatypes.</td> | ||||||||||||||
|
@@ -1207,6 +1235,7 @@ <h2>Changes between RDF 1.1 and RDF 1.2</h2> | |||||||||||||
|
||||||||||||||
<ul> | ||||||||||||||
<li>Added the datatype <code>rdf:JSON</code>.</li> | ||||||||||||||
<li>Added the class <code>rdf:ReificationProperty</code>.</li> | ||||||||||||||
</ul> | ||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update this to the definition in the RDF representation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a PR for RDF Representation, I will handle this in a couple of days.