On 8 Oct 2024, at 1:57 PM, 'Luis Enrique Ramos García' via TopBraid Suite Users <topbrai...@googlegroups.com> wrote:
Hi Carl,Thanks for your answer, and sorry for my late reply.i followed the procedure you indicated: " You could also create an actual Ontology asset collection for it in EDG and then import the TTL into this,"more precisely, this file: https://www.dublincore.org/specifications/dublin-core/dcmi-terms/dublin_core_terms.ttl.But, I can not visualize anything in there:
<edgissue.png>while in protégé editor I have the following result:
<protege.png>Thus, I wonder what should I be doing wrong?.Best regardsLuis RamosOn Saturday, August 31, 2024 at 3:43:42 PM UTC+2 Carl Burnett wrote:Yes, I have downloaded the DCMI Metadata Terms vocabulary in Turtle format and made it available for inclusion in my Ontologies via Files. You could also create an actual Ontology asset collection for it in EDG and then import the TTL into this, if you wanted it to be easily editable in EDG.On Wednesday, August 28, 2024 at 12:03:01 AM UTC-7 Luis Enrique Ramos García wrote:Dear all,I have an ontology class representing a document.and I would like to add some dc properties to this class like.contributor, coverage, creator, date, description, format, identifier, language, publisher, relation, rights, source, subject, title, typeThen, I assume this vocabulary should be available in tbc, but I do not find a way to include it in my ontology.Thus, I wonder which should be the best practice to get it done?Should I download the ontology and directly include it into tbc?Best regardsLuis Ramos
--
The topics of this mailing list include TopBraid EDG and related technologies such as SHACL.
To post to this group, send email to topbrai...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/f7340296-7537-4beb-8a44-dfc73944341an%40googlegroups.com.
<edgissue.png><protege.png>
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/6026D45A-6E79-480D-AAFB-A6ACE3A4402A%40topquadrant.com.
On 8 Oct 2024, at 2:15 PM, 'Luis Enrique Ramos García' via TopBraid Suite Users <topbrai...@googlegroups.com> wrote:
Hi Holger,Thanks so much for your quick answer.Unfortunately, I just tried that:
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/CABy94XkbPKPM7-FuO7D5eCN7tp7DqQht3HuX_LpCxqjSEKyaPA%40mail.gmail.com.
https://www.dublincore.org/specifications/dublin-core/dcmi-terms/dublin_core_terms.ttl
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/2176A156-26A1-44D9-B810-92087268AE96%40topquadrant.com.
--
The topics of this mailing list include TopBraid EDG and related technologies such as SHACL.
To post to this group, send email to topbrai...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/f7340296-7537-4beb-8a44-dfc73944341an%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/CABy94X%3Dkq9S80xyfdcGHgjV%2BBd1SSA1h4%3D%3Df5TBO%3DYiP0FRvaw%40mail.gmail.com.
<ramos_dublin_core_terms.ttl><ramos_dublin_core_terms.rdf>
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/CABy94X%3Dkq9S80xyfdcGHgjV%2BBd1SSA1h4%3D%3Df5TBO%3DYiP0FRvaw%40mail.gmail.com.
<ramos_dublin_core_terms.ttl><ramos_dublin_core_terms.rdf>
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/CB9C7E1D-4172-4621-9B27-F2D008C6F269%40topquadrant.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/14428039-89B0-4F35-8313-7B52A767494A%40topquadrant.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/14428039-89B0-4F35-8313-7B52A767494A%40topquadrant.com.
On 10 Oct 2024, at 9:08 AM, 'Luis Enrique Ramos García' via TopBraid Suite Users <topbrai...@googlegroups.com> wrote:Dear David,I followed your recommendation and got the expected results, and to make this issue self contained, here I leave the sparql queries I used:INSERT { ?s rdf:type owl:Class .
}
WHERE {
?s rdf:type sh:NodeShape ;
rdfs:isDefinedBy dct: ;
rdf:type rdfs:Class .
}
INSERT { ?s rdfs:subClassOf owl:Thing .
}
WHERE {
?s rdf:type sh:NodeShape ;
rdfs:isDefinedBy dct: ;
rdf:type rdfs:Class ;
FILTER (NOT EXISTS { ?s rdfs:subClassOf ?b . })
}moreover, I realized that range and domains are defined as follows:dcam:rangeIncludes dcterms:PhysicalMedium ;
dcam:domainIncludes dcterms:PhysicalResource .it would make sense to insert?:
That is also for visualization purposes.Luis Ramos
El mar, 8 oct 2024 a las 14:22, David Price (<dpr...@topquadrant.com>) escribió:
The TTL file that you link is full of rdfs:Class statements, so in fact the Protege view of those classes is actually “wrong” because they are not owl:Class. Protege must be pretending they are OWL for you or perhaps have some internal processing of well-known ontologies.In these cases in EDG, I just use SPARQL and add in the subClassOf owl:Thing statements for anything with no superclass, and add the rdf:type owl:Class statements too.
We are looking at improving EDG support for public RDFS and OWL ontologies and so will look at this case as input into that work.
Cheers,David
On 8 Oct 2024, at 12:57, 'Luis Enrique Ramos García' via TopBraid Suite Users <topbrai...@googlegroups.com> wrote:
Hi Carl,Thanks for your answer, and sorry for my late reply.i followed the procedure you indicated: " You could also create an actual Ontology asset collection for it in EDG and then import the TTL into this,"more precisely, this file: https://www.dublincore.org/specifications/dublin-core/dcmi-terms/dublin_core_terms.ttl.But, I can not visualize anything in there:
<edgissue.png>while in protégé editor I have the following result:
<protege.png>Thus, I wonder what should I be doing wrong?.Best regardsLuis RamosOn Saturday, August 31, 2024 at 3:43:42 PM UTC+2 Carl Burnett wrote:Yes, I have downloaded the DCMI Metadata Terms vocabulary in Turtle format and made it available for inclusion in my Ontologies via Files. You could also create an actual Ontology asset collection for it in EDG and then import the TTL into this, if you wanted it to be easily editable in EDG.On Wednesday, August 28, 2024 at 12:03:01 AM UTC-7 Luis Enrique Ramos García wrote:Dear all,I have an ontology class representing a document.and I would like to add some dc properties to this class like.contributor, coverage, creator, date, description, format, identifier, language, publisher, relation, rights, source, subject, title, typeThen, I assume this vocabulary should be available in tbc, but I do not find a way to include it in my ontology.Thus, I wonder which should be the best practice to get it done?Should I download the ontology and directly include it into tbc?Best regardsLuis Ramos--
The topics of this mailing list include TopBraid EDG and related technologies such as SHACL.
To post to this group, send email to topbrai...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/f7340296-7537-4beb-8a44-dfc73944341an%40googlegroups.com.
<edgissue.png><protege.png>
--
The topics of this mailing list include TopBraid EDG and related technologies such as SHACL.
To post to this group, send email to topbrai...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/14428039-89B0-4F35-8313-7B52A767494A%40topquadrant.com.
--
The topics of this mailing list include TopBraid EDG and related technologies such as SHACL.
To post to this group, send email to topbrai...@googlegroups.com
---
You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/CABy94Xmx9O4qO893VqvCZPsDtZwvPG5xDcCib4LeC0_4gq9vWw%40mail.gmail.com.