Web Ontology Language

Web Ontology Language
OWL Web Ontology Language
Current Status Published
Year Started 2002
Editors Mike Dean, Guus Schreiber
Base Standards Resource Description Framework, RDFS
Domain Semantic Web
Abbreviation OWL
Website OWL Reference
OWL 2 Web Ontology Language
Current Status Published
Year Started 2008
Editors W3C OWL Working Group
Base Standards Resource Description Framework, RDFS
Domain Semantic Web
Abbreviation OWL 2
Website OWL2 Overview

The Web Ontology Language (OWL) is a family of knowledge representation languages for authoring ontologies. The languages are characterised by formal semantics and RDF/XML-based serializations for the Semantic Web. OWL is endorsed by the World Wide Web Consortium (W3C)[1] and has attracted academic, medical and commercial interest.

In October 2007, a new W3C working group[2] was started to extend OWL with several new features as proposed in the OWL 1.1 member submission.[3] W3C announced the new version of OWL on 27 October 2009.[4] This new version, called OWL 2, soon found its way into semantic editors such as Protégé and semantic reasoners such as Pellet,[5][6] RacerPro,[7] FaCT++[8][9] and HermiT.[10]

The OWL family contains many species, serializations, syntaxes and specifications with similar names. OWL and OWL2 are used to refer to the 2004 and 2009 specifications, respectively. Full species names will be used, including specification version (for example, OWL2 EL). When referring more generally, OWL Family will be used.

Contents

History

Early ontology languages

There is a long history of ontological development in philosophy and computer science. Since the 1990s, a number of research efforts have explored how the idea of knowledge representation (KR) from artificial intelligence (AI) could be made useful on the World Wide Web. These included languages based on HTML (called SHOE), based on XML (called XOL, later OIL), and various frame-based KR languages and knowledge acquisition approaches.

Ontology languages for the web

In 2000 in the United States, DARPA started development of DAML led by James Hendler.[11] In March 2001, the Joint EU/US Committee on Agent Markup Languages decided that DAML should be merged with OIL.[11] The EU/US ad hoc Joint Working Group on Agent Markup Languages was convened to develop DAML+OIL as a web ontology language. This group was jointly funded by the DARPA (under the DAML program) and the European Union's Information Society Technologies (IST) funding project. DAML+OIL was intended to be a thin layer above RDFS,[11] with formal semantics based on a description logic (DL).[12]

OWL started as a research-based[13] revision of DAML+OIL aimed at the semantic web.

Semantic web standards

The Semantic Web provides a common framework that allows data to be shared and reused across application, enterprise, and community boundaries.
—World Wide Web Consortium, W3C Semantic Web Activity[14]

RDF schema

a declarative representation language influenced by ideas from knowledge representation
—World Wide Web Consortium, Metadata Activity[15]

In the late 1990s, the World Wide Web Consortium (W3C) Metadata Activity started work on RDF Schema (RDFS), a language for RDF vocabulary sharing. The RDF became a W3C Recommendation in February 1999, and RDFS a Candidate Recommendation in March 2000.[15] In February 2001, the Semantic Web Activity replaced the Metadata Activity.[15] In 2004 (as part of a wider revision of RDF) RDFS became a W3C Recommendation.[16] Though RDFS provides some support for ontology specification, the need for a more expressive ontology language had become clear.[17]

Web-Ontology Working Group

As of Monday, the 31st of May, our working group will officially come to an end. We have achieved all that we were chartered to do, and I believe our work is being quite well appreciated.
—James Hendler and Guus Schreiber, So Long and thanks for all the fish[18]

The World Wide Web Consortium (W3C) created the Web-Ontology Working Group as part of their Semantic Web Activity. It began work on November 1, 2001 with co-chairs James Hendler and Guus Schreiber.[18] The first working drafts of the abstract syntax, reference and synopsis were published in July 2002.[18] OWL became a formal W3C recommendation on February 10, 2004 and the working group was disbanded on May 31, 2004.[18]

OWL Working Group

In 2005, at the OWL Experiences And Directions Workshop a consensus formed that recent advances in description logic would allow a more expressive revision to satisfy user requirements more comprehensively whilst retaining good computational properties. In December 2006, the OWL1.1 Member Submission[19] was made to the W3C. The W3C chartered the OWL Working Group as part of the Semantic Web Activity in September 2007. In April 2008, this group decided to call this new language OWL2, indicating a substantial revision.[20]

OWL 2 became a W3C recommendation in October 2009. OWL 2 introduces profiles to improve scalability in typical applications.[4]

Acronym

Why not be inconsistent in at least one aspect of a language which is all about consistency?
—Guus Schreiber, Why OWL and not WOL?[21]

The natural acronym for Web Ontology Language would be WOL instead of OWL. Although the character Owl from Winnie the Pooh wrote his name WOL, the acronym OWL was proposed without reference to that character, as an easily pronounced acronym that would yield good logos, suggest wisdom, and honor William A. Martin's One World Language knowledge representation project from the 1970s.

Adoption

A survey (published in 2006) of ontologies available on the web collected 688 OWL ontologies. Of these, 199 were OWL Lite, 149 were OWL DL and 337 OWL Full (by syntax). They found that 19 ontologies had in excess of 2,000 classes, and that 6 had more than 10,000. The same survey collected 587 RDFS vocabularies.[22]

Ontologies

Introduction

An ontology is an explicit specification of a conceptualization.
Tom GruberA Translation Approach to Portable Ontology Specifications[23]

The data described by an ontology in the OWL family is interpreted as a set of "individuals" and a set of "property assertions" which relate these individuals to each other. An ontology consists of a set of axioms which place constraints on sets of individuals (called "classes") and the types of relationships permitted between them. These axioms provide semantics by allowing systems to infer additional information based on the data explicitly provided. A full introduction to the expressive power of the OWL is provided in the W3C's OWL Guide.

Example

An ontology describing families might include axioms stating that a "hasMother" property is only present between two individuals when "hasParent" is also present, and individuals of class "HasTypeOBlood" are never related via "hasParent" to members of the "HasTypeABBlood" class. If it is stated that the individual Harriet is related via "hasMother" to the individual Sue, and that Harriet is a member of the "HasTypeOBlood" class, then it can be inferred that Sue is not a member of "HasTypeABBlood".

Species

OWL sublanguages

The W3C-endorsed OWL specification includes the definition of three variants of OWL, with different levels of expressiveness. These are OWL Lite, OWL DL and OWL Full (ordered by increasing expressiveness). Each of these sublanguages is a syntactic extension of its simpler predecessor. The following set of relations hold. Their inverses do not.

  • Every legal OWL Lite ontology is a legal OWL DL ontology.
  • Every legal OWL DL ontology is a legal OWL Full ontology.
  • Every valid OWL Lite conclusion is a valid OWL DL conclusion.
  • Every valid OWL DL conclusion is a valid OWL Full conclusion.

OWL Lite

OWL Lite was originally intended to support those users primarily needing a classification hierarchy and simple constraints. For example, while it supports cardinality constraints, it only permits cardinality values of 0 or 1. It was hoped that it would be simpler to provide tool support for OWL Lite than its more expressive relatives, allowing quick migration path for systems utilizing thesauri and other taxonomies. In practice, however, most of the expressiveness constraints placed on OWL Lite amount to little more than syntactic inconveniences: most of the constructs available in OWL DL can be built using complex combinations of OWL Lite features[citation needed]. Development of OWL Lite tools has thus proven almost as difficult as development of tools for OWL DL, and OWL Lite is not widely used[citation needed].

OWL DL

OWL DL was designed to provide the maximum expressiveness possible while retaining computational completeness (either φ or ¬φ belong), decidability (there is an effective procedure to determine whether φ is derivable or not), and the availability of practical reasoning algorithms. OWL DL includes all OWL language constructs, but they can be used only under certain restrictions (for example, number restrictions may not be placed upon properties which are declared to be transitive). OWL DL is so named due to its correspondence with description logic, a field of research that has studied the logics that form the formal foundation of OWL.

OWL Full

OWL Full is based on a different semantics from OWL Lite or OWL DL, and was designed to preserve some compatibility with RDF Schema. For example, in OWL Full a class can be treated simultaneously as a collection of individuals and as an individual in its own right; this is not permitted in OWL DL. OWL Full allows an ontology to augment the meaning of the pre-defined (RDF or OWL) vocabulary. It is unlikely that any reasoning software will be able to support complete reasoning for OWL Full.

OWL2 profiles

In OWL 2, there are three sublanguages of the language. OWL 2 EL is a fragment that has polynomial time reasoning complexity; OWL 2 QL is designed to enable easier access and query to data stored in databases; OWL 2 RL is a rule subset of OWL 2.

Syntax

The OWL family of languages supports a variety of syntaxes. It is useful to distinguish high level syntaxes aimed at specification from exchange syntaxes more suitable for general use.

High level

These are close to the ontology structure of languages in the OWL family.

OWL abstract syntax

This high level syntax is used to specify the OWL ontology structure and semantics.[24]

The OWL abstract syntax presents an ontology as a sequence of annotations, axioms and facts. Annotations carry machine and human oriented meta-data. Information about the classes, properties and individuals that compose the ontology is contained in axioms and facts only. Each class, property and individual is either anonymous or identified by an URI reference. Facts state data either about an individual or about a pair of individual identifiers (that the objects identified are distinct or the same). Axioms specify the characteristics of classes and properties. This style is similar to frame languages, and quite dissimilar to well known syntaxes for description logics (DLs) and Resource Description Framework (RDF).[24]

Sean Bechhofer, et al. argue that though this syntax is hard to parse, it is quite concrete. They conclude that the name abstract syntax may be somewhat misleading.[25]

OWL2 functional syntax

This syntax closely follows the structure of an OWL2 ontology. It is used by OWL2 to specify semantics, mappings to exchange syntaxes and profiles.[26]

Exchange syntaxes

OWL RDF/XML Serialization
XML.svg
Filename extension .owx, .owl, .rdf
Internet media type application/owl+xml, application/rdf+xml[27]
Developed by World Wide Web Consortium
Standard(s) OWL 2 XML Serialization October 27, 2009; 2 years ago (2009-10-27),
OWL Reference February 10, 2004; 7 years ago (2004-02-10)
Open format? Yes

RDF syntaxes

Syntactic mappings into RDF are specified[24][28] for languages in the OWL family. Several RDF serialization formats have been devised. Each leads to a syntax for languages in the OWL family through this mapping. RDF/XML is normative.[24][28]

OWL2 XML syntax

OWL2 specifies an XML serialization that closely models the structure of an OWL2 ontology.[29]

Manchester Syntax

The Manchester Syntax is a compact, human readable syntax with a style close to frame languages. Variations are available for OWL and OWL2. Not all OWL and OWL2 ontologies can be expressed in this syntax.[30]

Examples

  • The W3C OWL 2 Web Ontology Language provides syntax examples.[31]

Tea ontology

Consider an ontology for tea based on a Tea class. But first, an ontology is needed. Every OWL ontology must be identified by an URI (http://www.example.org/tea.owl, say). This is enough to get a flavour of the syntax. To save space below, preambles and prefix definitions have been skipped.

OWL2 Functional Syntax

Ontology(<http://example.com/tea.owl>
  Declaration( Class( :Tea ) )
)

OWL2 XML Syntax

 <Ontology ontologyIRI="http://example.com/tea.owl" ...>
   <Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
   <Declaration>
     <Class IRI="Tea"/>
   </Declaration>
 </Ontology>

Manchester Syntax

Ontology: <http://example.com/tea.owl>
Class: Tea

RDF/XML syntax

<rdf:RDF ...>
    <owl:Ontology rdf:about=""/>
    <owl:Class rdf:about="#Tea"/>
</rdf:RDF>

RDF/Turtle

 <http://example.com/tea.owl> rdf:type owl:Ontology .
 :Tea  rdf:type            owl:Class .

Semantics

Relation to description logic

In the beginning, IS-A was quite simple. Today, however, there are almost as many meanings for this inheritance link as there are knowledge-representation systems.
Ronald J. BrachmanWhat ISA is and isn't[32]

Early attempts to build large ontologies were plagued by a lack of clear definitions. Members of the OWL family have model theoretic formal semantics, and so have strong logical foundations.

Description logics (DLs) are a family of logics that are decidable fragments of first-order logic with attractive and well-understood computational properties. OWL DL and OWL Lite semantics are based on DLs.[33] They combine a syntax for describing and exchanging ontologies, and formal semantics that gives them meaning. For example, OWL DL corresponds to the SHOIN (D) description logic, while OWL 2 corresponds to the SROIQ(D) logic.[34] Sound, complete, terminating reasoners (i.e. systems which are guaranteed to derive every consequence of the knowledge in an ontology) exist for these DLs.

Relation To RDFS

OWL Full is intended to be compatible with RDF Schema (RDFS), and to be capable of augmenting the meanings of existing Resource Description Framework (RDF) vocabulary.[35] A model theory describes the formal semantics for RDF.[36] This interpretation provides the meaning of RDF and RDFS vocabulary. So, the meaning of OWL Full ontologies are defined by extension of the RDFS meaning, and OWL Full is a semantic extension of RDF.[37]

Open world assumption

[The closed] world assumption implies that everything we don’t know is false, while the open world assumption states that everything we don’t know is undefined.
—Stefano Mazzocchi, Closed World vs. Open World: the First Semantic Web Battle[38]

The languages in the OWL family use the open world assumption. Under the open world assumption, if a statement cannot be proven to be true with current knowledge, we cannot draw the conclusion that the statement is false.

Contrast to other languages

A relational database consists of sets of tuples with the same attributes. SQL is a query and management language for relational databases. Prolog is a logical programming language. Both use the closed world assumption.

Terminology

Languages in the OWL family are capable of creating classes, properties, defining instances and its operations.

Instances

An instance is an object. It corresponds to a description logic individual.

Classes

A class is a collection of objects. It corresponds to a description logic (DL) concept. A class may contain individuals, instances of the class. A class may have any number of instances. An instance may belong to none, one or more classes.

A class may be a subclass of another, inheriting characteristics from its parent superclass. This corresponds to logical subsumption and DL concept inclusion notated \sqsubseteq.

All classes are subclasses of owl:Thing (DL top notated \top), the root class.

All classes are subclassed by owl:Nothing (DL bottom notated \bot), the empty class. No instances are members of owl:Nothing. Modelers use owl:Thing and owl:Nothing to assert facts about all or no instances.[39]

Example

For example, Employee could be the subclass of class owl:Thing while Dealer, Manager, and Labourer all subclass of Employee.

Properties

A property is a directed binary relation that specifies class characteristics. It corresponds to a description logic role. They are attributes of instances and sometimes act as data values or link to other instances. Properties may possess logical capabilities such as being transitive, symmetric, inverse and functional. Properties may also have domains and ranges.

Datatype properties

Datatype properties are relations between instances of classes and RDF literals or XML schema datatypes. For example, modelName (String datatype) is the property of Manufacturer class. They are formulated using owl:DatatypeProperty type.

Object properties

Object properties are relations between instances of two classes. For example, ownedBy may be an object type property of the Vehicle class and may have a range which is the class Person. They are formulated using owl:ObjectProperty.

Operators

Languages in the OWL family support various operations on classes such as union, intersection and complement. They also allow class enumeration, cardinality, and disjointness.

Public ontologies

Libraries

Biomedical

Miscellaneous

Standards

Browsers

The following tools include public ontology browsers:

Search

Limitations

  • No direct language support for n-ary relationships. For example modelers may wish to describe the qualities of a relation, to relate more than 2 individuals or to relate an individual to a list. This cannot be done within OWL. They may need to adopt a pattern instead which encodes the meaning outside the formal semantics.[46]

See also

References

  1. ^ "OWL 2 Web Ontology Language Document Overview". W3C. 2009-10-27. http://www.w3.org/TR/owl2-overview/. 
  2. ^ W3C working group
  3. ^ "Submission Request to W3C: OWL 1.1 Web Ontology Language". W3C. 2006-12-19. http://www.w3.org/Submission/2006/10/. 
  4. ^ a b http://www.w3.org/2009/10/owl2-pr
  5. ^ Sirin, E.; Parsia, B.; Grau, B.; Kalyanpur, A.; Katz, Y. (2007). "Pellet: A practical OWL-DL reasoner". Web Semantics: Science, Services and Agents on the World Wide Web 5 (2): 51–53. doi:10.1016/j.websem.2007.03.004. http://pellet.owldl.com/papers/sirin05pellet.pdf.  edit
  6. ^ Pellet
  7. ^ RacerPro
  8. ^ Tsarkov, D.; Horrocks, I. (2006). "FaCT++ Description Logic Reasoner: System Description". Automated Reasoning. Lecture Notes in Computer Science. 4130. pp. 292–297. doi:10.1007/11814771_26. ISBN 978-3-540-37187-8. http://www.cs.ox.ac.uk/ian.horrocks/Publications/download/2006/TsHo06a.pdf.  edit
  9. ^ FaCT++
  10. ^ HermiT
  11. ^ a b c Lacy, Lee W. (2005). "Chapter 10". OWL: Representing Information Using the Web Ontology Language. Victoria, BC: Trafford Publishing. ISBN 1-4120-3448-5. 
  12. ^ Baader, Franz; Horrocks, Ian; Sattler, Ulrike (2005). "Description Logics as Ontology Languages for the Semantic Web". In Hutter, Werner; Stephan. Mechanizing Mathematical Reasoning: Essays in Honor of Jörg H. Siekmann on the Occasion of His 60th Birthday. Heidelberg: Springer Berlin. ISBN 978-3-540-25051-7. http://www.springerlink.com/content/axh20n8l34bc3ecb/. 
  13. ^ "Feature Synopsis for OWL Lite and OWL: W3C Working Draft 29 July 2002". W3C. 2002-07-29. http://www.w3.org/TR/2002/WD-owl-features-20020729/. 
  14. ^ World Wide Web Consortium (2010-02-06). "W3C Semantic Web Activity". http://www.w3.org/2001/sw/. Retrieved 18 April 2010. 
  15. ^ a b c World Wide Web Consortium (2002-08-23). "Metadata Activity Statement". World Wide Web Consortium. http://www.w3.org/Metadata/Activity.html. Retrieved 20 April 2010. 
  16. ^ World Wide Web Consortium (2002-08-23). "RDF Vocabulary Description Language 1.0: RDF Schema". RDF Vocabulary Description Language 1.0. World Wide Web Consortium. http://www.w3.org/Metadata/Activity.html. Retrieved 20 April 2010. 
  17. ^ Lacy, Lee W. (2005). "Chapter 9 - RDFS". OWL: Representing Information Using the Web Ontology Language. Victoria, BC: Trafford Publishing. ISBN 1-4120-3448-5. 
  18. ^ a b c d "Web-Ontology (WebOnt) Working Group (Closed)". W3C. http://www.w3.org/2001/sw/WebOnt/#L151. 
  19. ^ Patel-Schneider, Peter; Horrocks, Ian (19 December 2006). "OWL 1.1 Web Ontology Language". World Wide Web Consortium. http://www.w3.org/Submission/2006/SUBM-owl11-overview-20061219/. Retrieved 26 April 2010. 
  20. ^ Grau, Bernardo Cuenca; Horrocks, Ian; Motik, Boris; Parsia, Bijan; Patel-Schneider, Peter; Sattler, Ulrike (2008). "OWL 2: The next step for OWL". Web Semantics: Science, Services and Agents on the World Wide Web 6 (4): 309–322. doi:10.1016/j.websem.2008.05.001. ISSN 1570-8268. http://www.sciencedirect.com/science/article/B758F-4TP1FC8-1/2/9d2f647c7ac874b8f8baa9cf92cf73a3. 
  21. ^ Ivan Herman. "Why OWL and not WOL?". Tutorial on Semantic Web Technologies. World Wide Web Consortium. http://www.w3.org/People/Ivan/CorePresentations/RDFTutorial/Slides.html#%28114%29. Retrieved 18 April 2010. 
  22. ^ Wang, Taowei David; Parsia, Bijan; Hendler, James (2006). "A Survey of the Web Ontology Landscape". The Semantic Web - ISWC 2006. 5th International Semantic Web Conference. Heidelberg: Springer Berlin. pp. 682–694. doi:10.1007/11926078_49. ISBN 978-3-540-49029-6. http://www.springerlink.com/conten/d642020004747767/. 
  23. ^ Tom Gruber (1993). "A Translation Approach to Portable Ontology Specifications". In: Knowledge Acquisition. 5: 199-199.
  24. ^ a b c d Patel-Schneider, Peter F.; Horrocks, Ian; Patrick, Hayes (10 February 2004). "OWL Web Ontology Language Semantics and Abstract Syntax". World Wide Web Consortium. http://www.w3.org/TR/2004/REC-owl-semantics-20040210/syntax.html. Retrieved 18 April 2010. 
  25. ^ Bechhofer, Sean; Patel-Schneider, Peter F.; Turi, Daniele (2003-12-10). "OWL Web Ontology Language Concrete Abstract Syntax". University of Manchester. http://owl.man.ac.uk/2003/concrete/20031210/. Retrieved 18 April 2010. 
  26. ^ Motik, Boris; Patel-Schneider, Peter F.; Parsia, Bijan (27 October 2009). "OWL 2 Web Ontology Language Structural Specification and Functional-Style Syntax". OWL 2 Web Ontology Language. World Wide Web Consortium. http://www.w3.org/TR/2009/REC-owl2-syntax-20091027/. Retrieved 18 April 2010. 
  27. ^ "application/rdf+xml Media Type Registration". IETF. 2004-09. pp. 2. http://tools.ietf.org/html/rfc3870. Retrieved 2011-01-08. 
  28. ^ a b Patel-Schneider, Peter F.; Motik, Boris (27 October 2009). "OWL 2 Web Ontology Language Mapping to RDF Graphs". OWL 2 Web Ontology Language. World Wide Web Consortium. http://www.w3.org/TR/2009/REC-owl2-mapping-to-rdf-20091027/. Retrieved 18 April 2010. 
  29. ^ http://www.w3.org/TR/2009/REC-owl2-xml-serialization-20091027/ Motik, Boris; Parsia, Bijan; Patel-Schneider, Peter F. (27 October 2009). "OWL 2 Web Ontology Language XML Serialization". OWL 2 Web Ontology Language. World Wide Web Consortium. http://www.w3.org/TR/2009/REC-owl2-xml-serialization-20091027/. Retrieved 18 April 2010. 
  30. ^ Horridge, Matthew; Patel-Schneider, Peter F. (27 October 2009). "OWL 2 Web Ontology Language Manchester Syntax". W3C OWL 2 Web Ontology Language. World Wide Web Consortium. http://www.w3.org/TR/owl2-manchester-syntax/. Retrieved 18 April 2010. 
  31. ^ Hitzler, Pascal; Krötzsch, Markus; Parsia, Bijan; Patel-Schneider, Peter F.; Rudolph, Sebastian (27 October 2009). "OWL 2 Web Ontology Language Primer". OWL 2 Web Ontology Language. World Wide Wed Consortium. http://www.w3.org/TR/2009/REC-owl2-primer-20091027/. Retrieved 2010-04-26. 
  32. ^ Brachman, R.J. (1983). What ISA is and isn't: An analysis of taxonomic links in semantic networks. IEEE Computer 16(10), 30-36.
  33. ^ Ian Horrocks & Peter F. Patel-Schneider. "Reducing OWL Entailment to Description Logic Satisfiability" (PDF). http://www.cs.man.ac.uk/~horrocks/Publications/download/2003/HoPa03c.pdf. 
  34. ^ Pascal Hitzler, Markus Krötzsch, Sebastian Rudolph (August 25, 2009). Foundations of Semantic Web Technologies. CRCPress. ISBN 142009050X. http://www.semantic-web-book.org. 
  35. ^ Deborah McGuinness and Frank van Harmelen (10 February 2004). "OWL Web Ontology Language Overview". W3C Recommendation for OWL, the Web Ontology Language. World Wide Web Consortium. http://www.w3.org/TR/2004/REC-owl-features-20040210/. Retrieved 18 April 2010. 
  36. ^ Patrick Hayes (10 February 2004). "RDF Semantics". Resource Description Framework. World Wide Web Consortium. http://www.w3.org/TR/2004/REC-rdf-mt-20040210/. Retrieved 18 April 2010. 
  37. ^ Peter F. Patel-Schneider, Patrick Hayes and Ian Horrocks (10 February 2004). "OWL Web Ontology Language Semantics and Abstract Syntax Section 5. RDF-Compatible Model-Theoretic Semantics". W3C Recommendation for OWL, the Web Ontology Language. World Wide Web Consortium. http://www.w3.org/TR/owl-semantics/rdfs.html. Retrieved 18 April 2010. 
  38. ^ Stefano Mazzocchi (2005-06-16). "Closed World vs. Open World: the First Semantic Web Battle". Stefano Mazzocchi. http://www.betaversion.org/~stefano/linotype/news/91/. Retrieved 27 April 2010. 
  39. ^ Lacy, Lee W. (2005). "Chapter 12". OWL: Representing Information Using the Web Ontology Language. Victoria, BC: Trafford Publishing. ISBN 1-4120-3448-5. 
  40. ^ OBO Foundry
  41. ^ OBO Download Matrix
  42. ^ NCBO BioPortal
  43. ^ SUMO download
  44. ^ TDWG LSID Vocabularies
  45. ^ Protégé web site
  46. ^ Natasha Noy and Alan Rector (12 April 2006). "Defining N-ary Relations on the Semantic Web". World Wide Web Consortium. http://www.w3.org/TR/swbp-n-aryRelations/. Retrieved 17 April 2010. 

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем сделать НИР

Look at other dictionaries:

  • Web Ontology Language — Информация в этой статье или некоторых её разделах устарела. Вы можете помочь проекту, обновив её и убрав после этого данный шаб …   Википедия

  • Web Ontology Language — Die Web Ontology Language (kurz OWL) ist eine Spezifikation des World Wide Web Consortiums (W3C), um Ontologien anhand einer formalen Beschreibungssprache erstellen, publizieren und verteilen zu können. Es geht darum, Termini einer Domäne und… …   Deutsch Wikipedia

  • Web Ontology Language — Pour les articles homonymes, voir OWL. Web Ontology Language (OWL) est un langage de représentation des connaissances construit sur le modèle de données de RDF. Il fournit les moyens pour définir des ontologies web structurées. Le langage OWL est …   Wikipédia en Français

  • Web Ontology Language for Web Services — Die Web Ontology Language for Web Services (kurz OWL S), vormals DAML S, ist eine Spezifikation zur semantischen Auszeichnung von Webservices. OWL S setzt dabei stark auf Erweiterungen: OWL S spezifiziert Ontologien, um einen Service auf… …   Deutsch Wikipedia

  • Web Ontology Language for Web Services — Pour les articles homonymes, voir OWL. Web Ontology Language for Web Services (OWL S) est une ontologie basée sur le dialecte XML OWL, permettant la description des propriétés et des capacités d un service web. Voir aussi Web Ontology Language… …   Wikipédia en Français

  • Multimedia Web Ontology Language — (MOWL) has been designed to facilitate semantic interactions with multimedia contents. It supports perceptual modeling of concepts using expected media properties. While the reasoning in traditional ontology languages, e.g. Web Ontology Language… …   Wikipedia

  • Ontology language — In computer science and artificial intelligence, ontology languages are formal languages used to construct ontologies. They allow the encoding of knowledge about specific domains and often include reasoning rules that support the processing of… …   Wikipedia

  • Web Rule Language — The Web Rule Language (WRL) is a rule based ontology language for the Semantic Web. See also * OWL * RDF * XMLExternal links* [http://www.w3.org/Submission/WRL/ Web Rule Language (WRL) W3C Member Submission 09 September 2005] …   Wikipedia

  • Semantic Web Rule Language — SWRL (Semantic Web Rule Language) is a proposal for a Semantic Web rules language, combining sublanguages of the OWL Web Ontology Language (OWL DL and Lite) with those of the Rule Markup Language (Unary/Binary Datalog).The specification was… …   Wikipedia

  • Ontology Inference Layer — (OIL) ist eine webbasierte Auszeichnungssprache des Semantischen Web, die mit dem Ontologie Editor OILed verbunden ist. Das Konzept von OIL verbindet dabei ein rahmenbasiertes System sowohl mit einer Beschreibungslogik wie mit dem Webstandards… …   Deutsch Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”