-
Notifications
You must be signed in to change notification settings - Fork 0
change basic-encode vocabulary #10
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
base: main
Are you sure you want to change the base?
Conversation
following the emerging consensus in #2
|
Looks good! I just think the properties ( Also, the file (N.B.: I've done the equivalent changes in w3c/rdf-schema#70.) |
niklasl
left a comment
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.
Changing case of properties to the conventional camelCase for properties (was PascalCase like for classes).
| <li>(<var>b</var>, `rdf:type`, `rdf:PropositionForm`) | ||
| <li>(<var>b</var>, `rdf:PropositionFormSubject`, <var>s</var>) | ||
| <li>(<var>b</var>, `rdf:PropositionFormPredicate`, <var>p</var>) | ||
| <li>(<var>b</var>, `rdf:PropositionFormObject`, <var>o</var>) |
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.
| <li>(<var>b</var>, `rdf:PropositionFormObject`, <var>o</var>) | |
| <li>(<var>b</var>, `rdf:propositionFormSubject`, <var>s</var>) | |
| <li>(<var>b</var>, `rdf:propositionFormPredicate`, <var>p</var>) | |
| <li>(<var>b</var>, `rdf:propositionFormObject`, <var>o</var>) |
| and (<var>b</var>, `rdf:ttObject`, <var>o</var>); | ||
| (<var>b</var>, `rdf:PropositionFormSubject`, <var>s</var>), | ||
| (<var>b</var>, `rdf:PropositionFormPredicate`, <var>p</var>), | ||
| and (<var>b</var>, `rdf:PropositionFormObject`, <var>o</var>); |
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.
| and (<var>b</var>, `rdf:PropositionFormObject`, <var>o</var>); | |
| (<var>b</var>, `rdf:propositionFormSubject`, <var>s</var>), | |
| (<var>b</var>, `rdf:propositionFormPredicate`, <var>p</var>), | |
| and (<var>b</var>, `rdf:propositionFormObject`, <var>o</var>); |
| <p class=note> | ||
| This is one reason why this transformation introduces new vocabulary terms | ||
| (`rdf:TripleTerm`, `rdf:ttSubject`, `rdf:ttPredicate`, `rdf::ttObject`), | ||
| (`rdf:PropositionForm`, `rdf:PropositionFormSubject`, `rdf:PropositionFormPredicate`, `rdf::ttObject`), |
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.
| (`rdf:PropositionForm`, `rdf:PropositionFormSubject`, `rdf:PropositionFormPredicate`, `rdf::ttObject`), | |
| (`rdf:PropositionForm`, `rdf:propositionFormSubject`, `rdf:propositionFormPredicate`, `rdf:propositionFormObject`), |
| <li id="qtt-fresh-bnode">Let <var>b</var> be a fresh blank node.</li> | ||
| <li>Add the association (<var>t</var>, <var>b</var>) to <var>Mₒ</var>.</li> | ||
| <li>Add the triples (<var>b</var>, `rdf:type`, `rdf:TripleTerm`), (<var>b</var>, `rdf:ttSubject`, <var>s</var>), (<var>b</var>, `rdf:ttPredicate`, <var>p</var>), and (<var>b</var>, `rdf:ttObject`, <var>o</var>) in <var>G</var>.</li> | ||
| <li>Add the triples (<var>b</var>, `rdf:type`, `rdf:PropositionForm`), (<var>b</var>, `rdf:PropositionFormSubject`, <var>s</var>), (<var>b</var>, `rdf:PropositionFormPredicate`, <var>p</var>), and (<var>b</var>, `rdf:PropositionFormObject`, <var>o</var>) in <var>G</var>.</li> |
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.
| <li>Add the triples (<var>b</var>, `rdf:type`, `rdf:PropositionForm`), (<var>b</var>, `rdf:PropositionFormSubject`, <var>s</var>), (<var>b</var>, `rdf:PropositionFormPredicate`, <var>p</var>), and (<var>b</var>, `rdf:PropositionFormObject`, <var>o</var>) in <var>G</var>.</li> | |
| <li>Add the triples (<var>b</var>, `rdf:type`, `rdf:PropositionForm`), (<var>b</var>, `rdf:propositionFormSubject`, <var>s</var>), (<var>b</var>, `rdf:propositionFormPredicate`, <var>p</var>), and (<var>b</var>, `rdf:propositionFormObject`, <var>o</var>) in <var>G</var>.</li> |
following the emerging consensus in #2