> On additional request, could up please add a triple that provides a
> literal value to a property that is a sub-property of rdfs:label,
> should you not want to use rdfs:label itself.
Does dcterms:title qualify? If not, is it worth suggesting this to the DCMI?
Bruce
Thanks for using BIBO for this kind of work :0
However, here are a couple of issues I noted:
1- The namespace you are currently using for bibo is not good; it should
be "http://purl.org/ontology/bibo/" instead of
"http://purl.org/ontology/biblio/"
2- In this document
"http://rdf.geospecies.org/sites/iowa_mosquitoes.rdf" you wrote:
==========
<bibo:Website rdf:about="http://eco.bcb.iastate.edu/mosquito">
<bibo:uri>http://eco.bcb.iastate.edu/mosquito/</bibo:uri>
<dcterms:title>Iowa-Mosquito.net</dcterms:title>
<dcterms:creator
rdf:resource="http://people.geospecies.org/people/Lyric_C_Bartholomay/"/>
<doap:Project
rdf:resource="http://people.geospecies.org/projects/Iowa_Mosquito.net/"/>
<bibo:AcademicArticle
rdf:resource="http://rdf.geospecies.org/refs/sucaet2008wbr/" />
<foaf:Organization
rdf:resource="http://rdf.geospecies.org/org/index#iastate_ent" />
</bibo:Website>
==========
The problem here is with:
==========
<doap:Project
rdf:resource="http://people.geospecies.org/projects/Iowa_Mosquito.net/"/>
<bibo:AcademicArticle
rdf:resource="http://rdf.geospecies.org/refs/sucaet2008wbr/" />
<foaf:Organization
rdf:resource="http://rdf.geospecies.org/org/index#iastate_ent" />
==========
You are using classes where you should use properties.
You should think about something like:
==========
==========
<bibo:Website rdf:about="http://eco.bcb.iastate.edu/mosquito">
<bibo:uri>http://eco.bcb.iastate.edu/mosquito/</bibo:uri>
<dcterms:title>Iowa-Mosquito.net</dcterms:title>
<dcterms:creator
rdf:resource="http://people.geospecies.org/people/Lyric_C_Bartholomay/"/>
<dcterms:relation
rdf:resource="http://people.geospecies.org/projects/Iowa_Mosquito.net/"/>
<dcterms:relation
rdf:resource="http://rdf.geospecies.org/refs/sucaet2008wbr/" />
<dcterms:relation
rdf:resource="http://rdf.geospecies.org/org/index#iastate_ent" />
</bibo:Website>
<doap:Project
rdf:about="http://people.geospecies.org/projects/Iowa_Mosquito.net/">
.....
</doap:Project>
<bibo:AcademicArticle
rdf:about="http://rdf.geospecies.org/refs/sucaet2008wbr/" />
....
</bibo:AcademicArticle>
<foaf:Organization
rdf:about="http://rdf.geospecies.org/org/index#iastate_ent" />
......
</foaf:Organization>
==========
You could create subProperties of dcterms:relation to describe the kind
of relation that holds between this website document and the other
resources (2 articles and a project).
Tell me what you think.
Thanks!
Take care,
Fred