<rdf:Description rdf:about="rdf-syntax-grammer">
<ex:editor>
<rdf:Description>
<ex:homePage rdf:resource="http://~~~" />
<ex:fullName>AAA</ex:fullName>
</rdf:Description>
This can be omitted like this:
<rdf:Description rdf:about="rdf-syntax-grammer">
<ex:editor ex:fullName="AAA />
<!-- homePage is ignored -->
</rdf:Description>
I understand that homePage
can't be omitted because it doesn't have a literal object node. So in this example, the homePage
section is ignored.
Next, if homePage
has literal object like this:
<ex:homePage>http://~~~</ex:homePage>
then how to omit this with ex:fullName
?
Is this correct? –
<rdf:Description rdf:about="rdf-syntax-grammer">
<ex:editor ex:homePage="http://~~~" />
<ex:editor ex:fullName="AAA" />
</rdf:Description>