OntoDL Tutorial: Setting Properties (Part 1): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Properties on Code Systems and Concepts) |
|||
| Zeile 1: | Zeile 1: | ||
| + | == Motivation == | ||
| + | |||
| + | ;Rationale | ||
| + | :in the first lesson, the OntoDL object types ''codesystem'' and ''concept'' have been introduced. For the sampke code system a name, URI and version numer were provided while concepts had just been assigned a name which implicitly was considered the concept's code, too. Nevertheless, there is more to say about a code system or concept. E.g. a concept may need a definiton and a text to display to the user. Additional information may include synonyms for the concept or designations in different languages. | ||
| + | :In this lesson you will learn how to use object properties to further describe a newly defined code system and concept | ||
| + | ;What you need | ||
| + | :You should have worked through [[OntoDL Tutorial: Defining a Terminology|Lesson 1]] of this tutorial in order to have a basic understanding of OntoDL objects. Beside this you need your MS Word with the OntoDL macro installed. | ||
| + | ;Example | ||
| + | :This example builds upon the example introduced in [[OntoDL Tutorial: Defining a Terminology|Lesson 1]] which again implements a simple story board: | ||
| + | :''Storyboard: In order to foster semantic interoperability among its IT-systems a hospital wants to define unique terminologies for its clinics. Each clinic and each ward shall be assigned a unique code that shall be used throughout all IT-systems for referring to that clinic or ward. '' | ||
| + | |||
== Properties of Code Systems and Concepts == | == Properties of Code Systems and Concepts == | ||
| + | Each OntoDL object can be further described by properties. In [[OntoDL Tutorial: Defining a Terminology|Lesson 1]] the definitions of a ''URI'' and ''Version'' for a ''codesystem'' object are examples for the use of propereties. As properties are the most important means to control the definition of an object, OntoDL offers many different ways for assigning values to properties. In this lesson we will focus on the OntoDL Object Language syntax which is rather simple. All you need to do is to place a 2-column-table into the definition scope of an object that holds the property name in the first column and the assigned value of the property in the second column. The example below shows how to define a display value and a definition for a concept: | ||
| + | |||
| + | <hr> | ||
| + | {| | ||
| + | |- | ||
| + | ! style="text-align:left; width:6em" | Style Sheet !! !! style="text-align:left; width:40em" | Text !! !! style="text-align:left" | ''Comment'' | ||
| + | |- style="vertical-align:top" | ||
| + | | OntoDL|| ||style="background:#fff588"| | ||
| + | {| | ||
| + | |style="text-align:left; width:0em"| | ||
| + | |<span style="font-family:Courier;font-size:91%">define concept (cardiologic clinic) {</span> | ||
| + | |} | ||
| + | || || The opening brace sets up the definition scope for the concept "cardiologic clinic". All property value assignements done within the definition scope are implicitly linked to this concept. | ||
| + | |- style="vertical-align:top" | ||
| + | | OntoDL|| ||style="background:#fff588"| | ||
| + | {|border="0" cellspacing="0" cellpadding = "0" | ||
| + | | style="text-align:left; width:0em" | | ||
| + | | | ||
| + | {|border="1" cellspacing="0" cellpadding = "4" | ||
| + | |- style="vertical-align:top" | ||
| + | | | ||
| + | {| | ||
| + | |style="text-align:left; width:0em"| | ||
| + | |<span style="font-family:Courier;font-size:91%">Display</span> | ||
| + | |} | ||
| + | |||
| + | | | ||
| + | {| | ||
| + | |style="text-align:left; width:0em"| | ||
| + | |<span style="font-family:Courier;font-size:91%">Cardiologic Clinic, Prof. Smyth</span> | ||
| + | |} | ||
| + | |||
| + | |- style="vertical-align:top" | ||
| + | | | ||
| + | {| | ||
| + | |style="text-align:left; width:0em"| | ||
| + | |<span style="font-family:Courier;font-size:91%">Definition</span> | ||
| + | |} | ||
| + | |||
| + | | | ||
| + | {| | ||
| + | |style="text-align:left; width:0em"| | ||
| + | |<span style="font-family:Courier;font-size:91%">The Cardiologic Clinic (Head: Prof. Smyth) takes responsibility for all cardiologic interventions and acute care therapies.</span> | ||
| + | |} | ||
| + | |||
| + | |} | ||
| + | |} | ||
| + | || || The left column gives the properties to be set while the second column gives the values to be assigned to these properties. | ||
| + | |- style="vertical-align:top" | ||
| + | | OntoDL|| ||style="background:#fff588"| | ||
| + | {| | ||
| + | |style="text-align:left; width:0em"| | ||
| + | |<span style="font-family:Courier;font-size:91%">}</span> | ||
| + | |} | ||
| + | || || Comment | ||
| + | |} | ||
| + | <hr> | ||
| + | |||
| + | == Predefined Properties == | ||
| + | |||
| + | |||
| + | |||
| + | == Qualified Properties == | ||
| + | |||
| + | |||
| + | == Example == | ||
<hr> | <hr> | ||
{| | {| | ||
Version vom 12. September 2016, 15:01 Uhr
Inhaltsverzeichnis
Motivation
- Rationale
- in the first lesson, the OntoDL object types codesystem and concept have been introduced. For the sampke code system a name, URI and version numer were provided while concepts had just been assigned a name which implicitly was considered the concept's code, too. Nevertheless, there is more to say about a code system or concept. E.g. a concept may need a definiton and a text to display to the user. Additional information may include synonyms for the concept or designations in different languages.
- In this lesson you will learn how to use object properties to further describe a newly defined code system and concept
- What you need
- You should have worked through Lesson 1 of this tutorial in order to have a basic understanding of OntoDL objects. Beside this you need your MS Word with the OntoDL macro installed.
- Example
- This example builds upon the example introduced in Lesson 1 which again implements a simple story board:
- Storyboard: In order to foster semantic interoperability among its IT-systems a hospital wants to define unique terminologies for its clinics. Each clinic and each ward shall be assigned a unique code that shall be used throughout all IT-systems for referring to that clinic or ward.
Properties of Code Systems and Concepts
Each OntoDL object can be further described by properties. In Lesson 1 the definitions of a URI and Version for a codesystem object are examples for the use of propereties. As properties are the most important means to control the definition of an object, OntoDL offers many different ways for assigning values to properties. In this lesson we will focus on the OntoDL Object Language syntax which is rather simple. All you need to do is to place a 2-column-table into the definition scope of an object that holds the property name in the first column and the assigned value of the property in the second column. The example below shows how to define a display value and a definition for a concept:
| Style Sheet | Text | Comment | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OntoDL |
|
The opening brace sets up the definition scope for the concept "cardiologic clinic". All property value assignements done within the definition scope are implicitly linked to this concept. | ||||||||||||||||
| OntoDL |
|
The left column gives the properties to be set while the second column gives the values to be assigned to these properties. | ||||||||||||||||
| OntoDL |
|
Comment |
Predefined Properties
Qualified Properties
Example
| Style Sheet | Text | Comment | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OntoDL | define codesystem (T02 Property Tables) { | Comment | ||||||||||||
| OntoDL |
|
Comment | ||||||||||||
| OntoDL | define concept (cardiologic clinic) { | Comment | ||||||||||||
| OntoDL |
|
Comment | ||||||||||||
| OntoDL | define concept (ward 51.1) { | Comment | ||||||||||||
| OntoDL |
|
Comment | ||||||||||||
| OntoDL | define concept (ward 51.2) { | Comment | ||||||||||||
| OntoDL |
|
Comment | ||||||||||||
| OntoDL | } | Comment | ||||||||||||
| OntoDL | define concept (orthopedic clinic) { | Comment | ||||||||||||
| OntoDL |
|
Comment | ||||||||||||
| OntoDL | define concept (ward 52.1){ | Comment | ||||||||||||
| OntoDL |
|
Comment | ||||||||||||
| OntoDL | } | Comment | ||||||||||||
| OntoDL | } | Comment |