The Web Ontology Language (OWL) is a vocabulary for creating schemas (ontologies), i.e. definitions of classes, properties and the relationships between them.
1
vote
1answer
11 views
OWL2 modelling a subclass with one different axiom
I'm trying to model some lexical data using OWL 2 (DL, using Protege). My main class is "Lemma", which has a number of axioms (using Manchester syntax):
Every Lemma hasLanguage some Language.
Every ...
1
vote
2answers
23 views
Semantic Ontology for .NET Type System
Is there an existing semantic ontology schema for representing relationships in the .NET / CLR type system? I could see such a thing being implemented in RDF, OWL or even XSD, but have not been able ...
0
votes
1answer
17 views
querying the pizza ontology with Pellet
How can I perform these queries using the Pellet reasoner?
Get all pizzas from America (via the hasCountryOfOrigin property).
Get all pizzas with a spinach topping (via the hasTopping property).
...
0
votes
1answer
17 views
Get annotations from ObjectPropertyAssertion OWLAPI
I'm using the OWL API for OWL 2.0 and there is one thing I can't seem to figure out. I have an OWL/XML file and I would like to retrieve the annotations for my object property assertions. Here are ...
0
votes
0answers
30 views
Generating C++ code from OWL ontologies
I have used Ian Dickinson's example code to browse an OWL file and get classes, super/sub classes and their properties defined there. My ultimate goal is to parse the OWL file and automatically ...
0
votes
1answer
22 views
Meaning of OWL exact cardinality restrictions
I am a newbie coding with the Manchester syntax for OWL. I need to understand the role of exactly. Which of these restrictions is correct:
(hasChild (A or B)) and (hasChild exactly 1 Thing)
...
0
votes
1answer
74 views
add properties to individual and insert them all into my file.owl
I have a class, MAN. I want to add an individual, jack, with properties:
hasage="50"
hasadress="france"
How can I create my individual jack and add properties to him and save them into my file ...
0
votes
1answer
42 views
Owl api: creating a new ontology that imports others
I have just started using the OWL API in order to generate some examples that use other ontologies. The situation is like this: I have two ontologies A and B that have many elements and imports from ...
0
votes
1answer
16 views
OWL API to check existence of a class in an ontology
How can we check if a class exists in an ontology using the OWL API?
0
votes
2answers
22 views
SQL Like in OWL API for data properties
In OWL API, classes may have data properties. For e.g. a class may have a date property hasCommonName "Something". In OWL API, is there any facility like the SQL like which allows querying for classes ...
0
votes
1answer
237 views
Convert Owl class to java class or xml
I am wondering if there are any tools that can convert an owl ontology xml schema or an xml document. Or is there any way to generate a java class for a given owl class.
Lets say I have owl class ...
1
vote
3answers
49 views
How to access OWL documents using XPath in Java?
I am having an OWL document in the form of an XML file. I want to extract elements from this document. My code works for simple XML documents, but it does not work with OWL XML documents.
I was ...
0
votes
1answer
17 views
Inconsistency caused by reflexive property
The following ontology is inconsistent. Can you explain why?
:Ingredient a owl:Class.
:Car a owl:Class;
owl:disjointWith ...
1
vote
1answer
34 views
OWL 2 reasoning with SWRL rules
I'm trying to use the HermiT reasoner to compute inferences for an ontology which contains a set of OWL axioms and a SWRL rule:
Ontology(
ClassAssertion( :Student :Bob )
ClassAssertion( ...
1
vote
0answers
23 views
How to convert a concept (class) into an instance in an ontology?
I am working on creating a large ontology and want to convert a concept (class) into an instance. Is this possible automatically? For example I have the class "x" and it has been defined as a subclass ...
1
vote
1answer
14 views
Restrictions in Protégé
I'm following the Protégé tutorial and doing the steps of the Pizza ontology.
The problem is that I cannot create a restriction. I can't find the Superclasses header. How can I do it?
0
votes
1answer
42 views
Inferencing in protege
I have a simple ontology as follows
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
...
2
votes
1answer
63 views
OWL 2 rolification
In description logic, there is a concept called "rolification" (Sec 3.2 here). It converts a concept (class) into a role (property). For example, when we rolify R(x), we get r(x,x). This technique is ...
0
votes
0answers
20 views
SQL server table column names to OWL2 data properties
Can anybody help to fix mistakes in code, that creates OWL2 data properties from table columns names in java using Protege OWL API?
OWLDatatypeProperty dataproperty = ...
2
votes
1answer
55 views
Use of Dublin Core references and isReferencedBy terms
The Dublin Core vocabulary expresses two terms:
references
isReferencedBy
The two terms are inverses whereas:
if A references B, then B is referenced by A
In a graph is it then (fully or to a ...
0
votes
0answers
24 views
How to use own ontology to classify dbpedia terms extracted with stanbol?
I am trying to build an application using Apache Stanbol which:
recognizes entities from DBpedia
classifies these entities using an OWL ontology which extends the definition of the dcterms:subject ...
0
votes
0answers
38 views
using OWLreasoner javascript library, trouble loading ontology
I am trying to load an ontology using this library https://code.google.com/p/owlreasoner/.
I am using the same method shown(link) to load an .owl file with the url parser.
var url = ...
0
votes
1answer
84 views
How to generate list of named classes and object property names in a given ontology using java & jena
Here is the owl ontology that represents information on artists, musicians and musical hits
<rdf:RDF xml:base="http://www.semanticweb.org/ontologies/2013/3/MyArt">
<owl:Ontology ...
1
vote
3answers
879 views
How to read out specific values from an OWL Ontology using Java
I've got an OWL Ontology:
<?xml version="1.0"?>
<rdf:RDF
xmlns="http://www.owl-ontologies.com/Ontology1272923485.owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
...
0
votes
2answers
793 views
OWL: get Class from an existent Antology
How can I get an existing Class from an Ontology with the OWL-API? This is a fragment of my ontology:
<owl:Class rdf:ID="StringDocu">
<owl:equivalentClass>
<owl:Restriction>
...
3
votes
1answer
85 views
Using OWl in XML Syntax. First Steps
I just started using OWL for a project at the university.
The project is about pizza, which seems to be a common problem when it comes to RDF and OWL. So what we have to do first is model a pizza that ...
0
votes
2answers
38 views
Describing “inclusion” in ontologies using Protege
I am using Protege 4.3.0 to describe remediation activities in oil-damaged areas.
I am a complete newbie at ontologies and followed Matthew Horridge's tutorial.
He expresses the fact that every Pizza ...
2
votes
0answers
21 views
Conversions between ecore and OWL
For a new project we are attempting to convert some models that were done in the Eclipse EMF framework and are stored in ecore format to OWL 2 models.
Much of the searches referred to this site: ...
0
votes
1answer
22 views
Owl Protege model repository
I can't really grasp the concept of how I can add an ontology model in a repository for storing. For example, I've created an ontology model in Protege 4.3. What's the next step? Suppose I want to ...
0
votes
2answers
109 views
get a property value of an individual jena api
I have my class Alert which contain as individual
Alert_1
Alert_2
Alert_3
and each individual has properties witch contains values
for example
Alert_1 :
hasanalyser : analyser546
...
0
votes
2answers
24 views
How to express “a-part-of” relationship in OWL ontology language?
How to represent a "part-of" SQL relationship in OWL ontology language?
For example:
CREATE TABLE DevelopmentTask (
DevelopmentTaskID INT,
SoftwareProjectID INT FOREIGN KEY REFERENCES ...
1
vote
1answer
34 views
OWL instance participation logic
In OWL:
There is a class X and the properties P1, P2, and P3, each of which has domain X.
I want to say:
Every instance of X must at least participate in a relation with one of the properties P1 ...
3
votes
1answer
45 views
Why is this DL-Query not returning any individuals?
This DL-Query is not returning any individuals:
Query (Protégé syntax) : hasPet exactly 1 DomesticAnimal
Here's part of the ontology:
:hasPet a owl:ObjectProperty;
rdfs:domain ...
0
votes
0answers
17 views
Protege: OWLVizTab missing
I'm using Protege 3.4.8, and I followed the OWLViz installation guide provided here. I installed GraphViz using its Stable and development Mac OS Install packages, and didn't change any configuration, ...
1
vote
1answer
60 views
Device Description Vocabulary
I asked a more general question a while back and didn't get any responses but am still going to persevere. Does anyone know of a vocabulary/ontology for describe digital devices with web browsers? I ...
3
votes
4answers
265 views
Semantic web app for my project?
I am currently working on a project, let me explain the global idea :
We have multimedia content (audio, video and PDF files) that we want to share with the worldwide with a CMS.
Some of the ...
-1
votes
1answer
38 views
Why does my SPARQL query duplicate results?
I am doing some searching, and learning more about SPARQL, but it is not easy like SQL. I just want to know why my query duplicates result and how to fix it. This is my SPARQL Query:
PREFIX ...
3
votes
3answers
36 views
restrict xsd:string to [A-Z] for rdfs:range
I think the core question is stated in the title...
I don't know exactly how to go about? OWL restrictions don't do the trick for me (at first glance). Regex? If so, at what point? (rdfs:range ...
2
votes
1answer
48 views
SPARQL query on rdf:resource
Suppose I want to retrieve the names of all elements in the periodic table with a standard state of 'gas'. Here are what I believe are the relevant portions of the .owl file…
<owl:Class ...
3
votes
2answers
80 views
Representing if-then sentence using OWL?
I am working with basic OWL, and it's quite easy to represent some simple sentence like "Songoku is a lecturer, he teaches Maths".
E.g.:
<owl:Class rdf:ID="Lecturer"></owl:Class>
...
1
vote
1answer
116 views
Using GROUP BY, COUNT and SAMPLE in apache jena SPARQL
So I have an RDF schema that contains many "groups", and each of these groups has a "name", and contains a number of "elements". I need to select the name of every group, along with the number of ...
1
vote
1answer
68 views
Querying anonymous classes in OWL API with Manchester Syntax
I'm using OWL API for reasoning over ontology created in Protege. I'm dealing with OWL API Example DL query: ...
-1
votes
1answer
36 views
Iterate Sql.result set
I need to create OWL class from the first table name if cardinality 1:1 and OWL class from the second table name. If cardinality 1:* and one of tables describes object properties, create OWL object ...
1
vote
1answer
36 views
EPUB in Protege
How can i represent an EPUB property in Protege?
I need to set it with the content of an EPUB file, so I can infer some metadata about the individuals of my ontology.
0
votes
1answer
41 views
how to rename an ontology's prefixes
I have created an onology using Jena API which contains the following classes and DataType Properties:
public class Onto {
OntClass USER,...;
OntModel model;
String uriBase;
...
0
votes
2answers
28 views
Using jOWL Sparql_Dl to return ObjectProperties of a specific class
I am using jOWL to help visualize an ontology. I have returned the classes and subclasses in separate dropdowns.
I want the user to be able to click on an option to reveal a form showing the ...
-10
votes
1answer
352 views
Skills/Qualifications ontology [closed]
I'm looking for an ontology for engineering skills(qualifications).
Do you know such ontology? I would prefer it in a owl or rdf format.
0
votes
1answer
63 views
c++-builder: convert into stdcall type
I'm currently trying to port an old owl-c++-builder-projekt to use XE2 and owlnext.
In the old file, I could simply call a line
(FARPROC)LP_I2COpen = GetProcAddress(Hi_I2C, "I2COpen");
While ...
0
votes
1answer
50 views
what does a hashtag mean before a resource ID in RDF and OWL
I often see a hashtag in front of resources names in RDF serialization of OWL. For instance:
....rdf:resource="#hasParent" />
What does this mean? When I look it up, Google gives me a bunch of ...
0
votes
3answers
42 views
I need to connect an Individual to a Class through an ObjectProperty, but can't because OWL-DL does not allow it. Is There a workaround for this?
I am building an ontology that describes some web services. How should I express the following OWL-Full statements in OWL-DL:
:Service a owl:Class
:Location a ...

