David Price

Deleted dup base URIs

# Saved by TopBraid on Wed Oct 12 12:24:42 BST 2011
# baseURI: http://www.linkedmodel.org/schema/dtype
# imports: http://www.linkedmodel.org/schema/vaem
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dtype: <http://www.linkedmodel.org/schema/dtype#> .
@prefix dtype-1.0: <http://www.linkedmodel.org/1.0/schema/dtype#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix voag: <http://voag.linkedmodel.org/schema/voag#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.linkedmodel.org/1.0/schema/dtype>
rdf:type owl:Ontology ;
rdfs:label "Datatype Ontology"^^xsd:string ;
dc:rights "The LinkedModel DTYPE Ontology is issued under a Creative Commons Attribution Share Alike 3.0 United States License. Attribution should be made to <a href=\"http://www.topquadrant.com\">TopQuadrant, Inc.</a>."^^xsd:string ;
dc:subject "Datatypes"^^xsd:string ;
dc:title "Datatype Ontology"^^xsd:string ;
voag:hasLicenseType voag:CC-SHAREALIKE_3PT0-US ;
voag:withAttributionTo
voag:TopQuadrantAttribution ;
vaem:acronym "DTYPE"^^xsd:string ;
vaem:dateCreated "2011-29-05"^^vaem:dateUnion ;
vaem:description "The ontology 'dtype' provides a specification of simple data types such as enumerations. These are needed in support of the conversion of XML Schemas and UML Models to OWL. Codelists are also defined in 'dtype'."^^xsd:string ;
vaem:intent "To provide a foundation for data types."^^xsd:string ;
vaem:namespace "http://www.linkedmodel.org/schema/dtype"^^xsd:anyURI ;
vaem:namespacePrefix
"dtype"^^xsd:string ;
vaem:revisionNumber "1.0"^^xsd:string ;
vaem:specificity "1"^^vaem:integer_1to5 ;
vaem:usesNonImportedResource
voag:hasLicenseType , <voag:TopQuadrantAttribution> , dc:rights , voag:hasGovernance , dc:subject , <voag:CC-SHAREALIKE_3PT0-US> , voag:withAttributionTo ;
owl:imports <http://www.linkedmodel.org/1.2/schema/vaem> ;
owl:versionIRI <http://www.linkedmodel.org/1.0/schema/dtype> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
<http://www.linkedmodel.org/schema/dtype>
rdf:type owl:Ontology ;
owl:imports <http://www.linkedmodel.org/schema/vaem> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
dtype:CodeList
rdf:type owl:Class ;
rdfs:label "Enumeration"^^xsd:string ;
rdfs:subClassOf dtype:Enumeration ;
vaem:definition "A codelist is a controlled vocabulary of terms that are used to represent permissible values of a variable in information systems. The representaiton of codes in 'dtype' has been influenced by CCTS and UBL."^^xsd:string .
dtype:CompositeCodeList
rdf:type owl:Class ;
rdfs:label "Composite code list"^^xsd:string ;
rdfs:subClassOf dtype:CodeList ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom dtype:CodeList ;
owl:onProperty dtype:compositeOf
] ;
vaem:definition "A composite codelist is a codelist made up of other codelists. It does not introduce any new codes."^^xsd:string ;
owl:disjointWith dtype:SimpleCodeList , dtype:DerivedCodeList .
dtype:DerivedCodeList
rdf:type owl:Class ;
rdfs:label "Derived Code List"^^xsd:string ;
rdfs:subClassOf dtype:CodeList ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom dtype:CodeList ;
owl:onProperty dtype:derivedFrom
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:derivedFrom
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom dtype:ValueReference ;
owl:onProperty dtype:hasMember
] ;
vaem:definition "A derived codelist is a sublist of another codelist. The members that it has must be members of the source list."^^xsd:string ;
owl:disjointWith dtype:CompositeCodeList , dtype:SimpleCodeList .
dtype:EnumeratedValue
rdf:type owl:Class ;
rdfs:label "Metadata Enumerated value"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:order
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:position
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:name
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:value
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:code
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:description
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:id
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:url
] ;
vaem:definition "The base class for datatypes that have values that are restriced to a set of literals or tokens. The members of the restriction may themselve be restriced by facets that apply to scalar data types."^^xsd:string .
dtype:Enumeration
rdf:type owl:Class ;
rdfs:label "VAEM Enumeration"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom dtype:EnumeratedValue ;
owl:onProperty dtype:value
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom dtype:EnumeratedValue ;
owl:onProperty dtype:defaultValue
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:defaultValue
] ;
vaem:definition "A type that serves as a container for the enumerated values of an enumeration. This enables the enumeration itself to be referenceable. One need for this is in determing the default value of an enumeration , another need is in the management of sub-enumerations and composite enumerations."^^xsd:string .
dtype:SimpleCodeList
rdf:type owl:Class ;
rdfs:label "Simple code list"^^xsd:string ;
rdfs:subClassOf dtype:CodeList ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom dtype:EnumeratedValue ;
owl:onProperty dtype:hasMember
] ;
vaem:definition "A simple codelist is one made up only of enumerated values."^^xsd:string ;
owl:disjointWith dtype:CompositeCodeList , dtype:DerivedCodeList .
dtype:ValueReference
rdf:type owl:Class ;
rdfs:label "Value Reference"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom dtype:EnumeratedValue ;
owl:onProperty dtype:refersTo
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:position
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty dtype:refersTo
] ;
vaem:definition "A value reference is a pointer to an Enumerated Value. The original position of the value can be overridden by the position attribute."^^xsd:string .
dtype:code
rdf:type owl:DatatypeProperty ;
rdfs:label "code"^^xsd:string ;
rdfs:range xsd:anySimpleType ;
vaem:definition "A property for expressing an encoded value. The range has been set to 'xsd:anySimpleType' to allow for a variety of scalar datatypes."^^xsd:string .
dtype:compositeOf
rdf:type owl:ObjectProperty ;
rdfs:label "composite of"^^xsd:string ;
vaem:definition "Aproperty for constructing composite data structures"^^xsd:string .
dtype:defaultValue
rdf:type rdf:Property ;
rdfs:label "default value"^^xsd:string ;
vaem:definition "The property 'dtype:defaultValue' is a general property for specifying a value in situations where none is specified, or can be determined. In some cases of use, this property could have a scalar value and in other cases may need to refer to a first class concept that holds a 'value object'. For this reason, the type of this property is set as 'rdf:Property' and the property is rangeless."^^xsd:string .
dtype:derivedFrom
rdf:type owl:ObjectProperty ;
rdfs:label "derived from"^^xsd:string ;
vaem:definition "A property for specifying a derivation relationship."^^xsd:string .
dtype:hasMember
rdf:type owl:ObjectProperty ;
rdfs:label "has member"^^xsd:string ;
vaem:definition "A property for specifying how member elements make up a data structure."^^xsd:string .
dtype:literal
rdf:type owl:DatatypeProperty ;
rdfs:label "literal"^^xsd:string ;
rdfs:range xsd:string ;
vaem:definition "A general purpose property for holding string literals."^^xsd:string .
dtype:order
rdf:type owl:DatatypeProperty ;
rdfs:label "order"^^xsd:string ;
rdfs:range xsd:nonNegativeInteger ;
rdfs:seeAlso dtype:orderIndex ;
vaem:definition "The property 'dtype:order' provides a means to specify a precedence. One use of order is in specifying ordered enumerations such as 'voag:ConfidentialityLevel'. A similar property, but with an important type difference, is 'vaem:orderIndex'. This is for use on property occurrences in class axioms where it can be placed on a restriction to specify how that property may be transformed into other representations where ordering has some importance, for example, in XML Schema sequences. Whereas 'vaem:order' is a datatype property, 'vaem:orderIndex' is an annotation property."^^xsd:string .
dtype:orderIndex
rdf:type owl:AnnotationProperty ;
rdfs:label "order index"^^xsd:string ;
rdfs:range xsd:nonNegativeInteger ;
vaem:definition "The property 'dtype:orderIndex' is an annotation property to specify a position that some value or structure will have. One use is to specify the place that a resource has in a sequence. One use is on property occurrences in class axioms. Here 'vaem:orderIndex' is placed on a restriction to specify how that property may be transformed into a representation where ordering has some importance, for example, in XML Schema sequences."^^xsd:string .
dtype:position
rdf:type owl:DatatypeProperty ;
rdfs:label "code"^^xsd:string ;
rdfs:range xsd:nonNegativeInteger .
dtype:refersTo
rdf:type owl:ObjectProperty ;
rdfs:label "refers to"^^xsd:string ;
vaem:definition "An indirection pointer for relating a slot in am occurrence data structure, such as 'dtype:ValueReference' with another resource."^^xsd:string .
dtype:value
rdf:type rdf:Property ;
rdfs:label "value"^^xsd:string ;
vaem:definition "The property 'dtype:value' is a general property that in some cases could have scalar values and in other cases may refer to a first class concept that is a 'value object'. For this reason, the type of this property is set as 'rdf:Property' and the property is rangeless."^^xsd:string .
# Saved by TopBraid on Wed Oct 12 12:21:35 BST 2011
# baseURI: http://www.linkedmodel.org/schema/vaem
@prefix creativecommons: <http://creativecommons.org/ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vaem-1.2: <http://www.linkedmodel.org/1.2/schema/vaem#> .
@prefix voag: <http://voag.linkedmodel.org/schema/voag#> .
@prefix voag-1.0: <http://voag.linkedmodel.org/1.0/schema/voag#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
dc:author
rdf:type owl:AnnotationProperty ;
rdfs:label "author"^^xsd:string ;
rdfs:range xsd:string .
dc:contributor
rdf:type owl:AnnotationProperty ;
rdfs:label "contributor"^^xsd:string ;
rdfs:range xsd:string .
dc:description
rdf:type owl:AnnotationProperty ;
rdfs:label "description"^^xsd:string ;
rdfs:range xsd:string .
dc:rights
rdf:type owl:AnnotationProperty ;
rdfs:label "rights"^^xsd:string ;
rdfs:range xsd:string .
dc:subject
rdf:type owl:AnnotationProperty ;
rdfs:label "subject"^^xsd:string ;
rdfs:range xsd:string .
dc:title
rdf:type owl:AnnotationProperty ;
rdfs:label "title"^^xsd:string ;
rdfs:range xsd:string .
voag:hasCatalogEntry
rdf:type owl:ObjectProperty ;
rdfs:label "has catalog entry"^^xsd:string .
voag:hasLicenseType
rdf:type owl:ObjectProperty ;
rdfs:label "has license type"@en-US .
voag:withAttributionTo
rdf:type owl:ObjectProperty ;
rdfs:label "with attribution to"^^xsd:string .
<http://www.linkedmodel.org/schema/vaem>
rdf:type owl:Ontology ;
rdfs:label "Vocabulary for Attaching Essential Metadata"^^xsd:string ;
voag:hasLicenseType voag:CC-SHAREALIKE_3PT0-US ;
vaem:acronym "VAEM"^^xsd:string ;
vaem:dateCreated "2011-04-20"^^vaem:dateUnion ;
vaem:description """VAEM stands for \"Vocabulary for Attaching Essential Metadata\". The purpose of VAEM is to provide, by import, a foundation for commonly needed resources when building an ontology. An effort has been made to restrict these resources to a minimal level. In some ways DC, Dublin Core, could have provided such a foundation. Importing DC unfortunately causes \"ontology glut\", through the import of many DC Terms.
VAEM attaches basic metadata properties and dimension properties, such as domain, discipline, aspect and viewpoint, to the 'owl:Ontology' class to fully qualify the ontology.
What VAEM regards as 'essential metadata' is data about dates and times, confidentiality, and other characterisitic qualifiers of the ontology, but also references to where a ontology is documented and where to find ontology Governance, Attribution and Provenance. For the latter, some properties from the VOAG ontology are used, notably, 'voag:hasGovernance', 'voag:withAttributionTo', and 'voag:hasLicenceType'. VAEM also defines classes for representing enumerations and enumerated values."""^^xsd:string ;
vaem:hasCatalogEntry
<vaem:VAEM-CatalogEntry> ;
vaem:hasRole vaem:SchemaGraph ;
vaem:intent "To provide essential resources and metadata for ontologies and controlled vocabularies so that the provenance, governance and licensing aspects of an ontology can be understand."^^xsd:string ;
vaem:lastUpdated "$LastChangedDate: 2011-06-04 04:04:02 -0700 (Sat, 04 Jun 2011) $"^^vaem:dateUnion ;
vaem:namespace "http://www.linkedmodel.org/1.2/schema/vaem#"^^xsd:anyURI ;
vaem:namespacePrefix
"vaem"^^xsd:string ;
vaem:revisionNumber "1.2"^^xsd:string ;
vaem:specificity "1"^^vaem:integer_1to5 ;
vaem:usesNonImportedResource
dc:rights , dc:subject , dc:title , voag:CC-SHAREALIKE_3PT0-US , voag:hasLicenseType ;
owl:versionIRI <http://www.linkedmodel.org/schema/vaem> ;
owl:versionInfo "$Id: OSG_vaem-(v1.2).ttl 5016 2011-06-04 11:04:02Z RalphHodgson $"^^xsd:string , "Created with TopBraid Composer"^^xsd:string .
vaem:Aspect
rdf:type owl:Class ;
rdfs:label "Aspect"^^xsd:string ;
rdfs:subClassOf vaem:Scope ;
vaem:definition "Aspect Scope is used to distinguish among sets of features of a domain or subject area. The term is borrowed from 'aspect-oriented' programming, where it is used to separate concerns. An ontology may be characterized by this dimension so as to parition features that are orthogonal. For example, in an SBFI systems ontology we can distinguish aspects for 'structure', 'function', 'behavior' and 'interface'."^^xsd:string .
vaem:BridgeGraph
rdf:type vaem:GraphRole ;
rdfs:label "Bridge graph"^^xsd:string .
vaem:Category
rdf:type owl:Class ;
rdfs:label "Category"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
vaem:definition "Category is an abstract class for all concepts whose roles are to characterize other concepts in some manner."^^xsd:string .
vaem:CollectionGraph
rdf:type vaem:GraphRole ;
rdfs:label "Collection graph"^^xsd:string .
vaem:CurationGraph
rdf:type vaem:GraphRole ;
rdfs:label "Curation graph"^^xsd:string ;
vaem:definition "A curation graph is one whose purpose is to hold metadata that is needed to describe, govern and provision another graph. A curation graph will likely use voag and vaem for this purpose. The property 'vaem:curationGraph' is used to link to the graph (or graphs) being curated."^^xsd:string .
vaem:DataGraph
rdf:type vaem:GraphRole ;
rdfs:label "Data graph"^^xsd:string .
vaem:Discipline
rdf:type owl:Class ;
rdfs:label "Discipline"^^xsd:string ;
rdfs:subClassOf vaem:Scope ;
vaem:definition "A Discipline is a specific area of work or study. Examples of disciplines in the engineering domain are electrical engineering, mechanical engineering and, in the financial domain, risk assessment, investment analysis. In 'vaem', 'Discipline' is used as a dimension for characterizing an ontology graph."^^xsd:string .
vaem:Domain
rdf:type owl:Class ;
rdfs:label "Domain"^^xsd:string ;
rdfs:subClassOf vaem:Scope ;
vaem:definition "A domain is a subject area of interest. Examples of domains are 'enterprise', 'process', 'organization' and 'system'. In 'vaem' the notion of 'Domain' is used as a dimension for characterizing an ontology graph."^^xsd:string .
vaem:FunctionsGraph
rdf:type vaem:GraphRole ;
rdfs:label "Functions graph"^^xsd:string .
vaem:GraphRole
rdf:type owl:Class ;
rdfs:label "Graph role"^^xsd:string ;
rdfs:subClassOf vaem:Category ;
vaem:definition "GraphRole is used to characterize how a graph of resources participates in an ontology set. For example, a graph can be a schema, vocabulary, dataset, script, or ruleset."^^xsd:string ;
owl:oneOf (vaem:ScriptGraph vaem:BridgeGraph vaem:DataGraph vaem:CollectionGraph vaem:VocabularyGraph vaem:CurationGraph vaem:ProxyGraph vaem:ViewGraph vaem:FunctionsGraph vaem:SchemaGraph vaem:MappingGraph vaem:RulesGraph) .
vaem:MappingGraph
rdf:type vaem:GraphRole ;
rdfs:label "Mapping graph"^^xsd:string ;
vaem:description "A graph that specifies a transformation of a graph into another graph or graphs. Invariably this is a SPINMap graph using SPARQL Rules (SPIN) to express the transforms."^^xsd:string .
vaem:ProxyGraph
rdf:type vaem:GraphRole ;
rdfs:label "Proxy graph"^^xsd:string .
vaem:RulesGraph
rdf:type vaem:GraphRole ;
rdfs:label "Rules Graph"^^xsd:string .
vaem:SchemaGraph
rdf:type vaem:GraphRole ;
rdfs:label "Schema graph"^^xsd:string .
vaem:Scope
rdf:type owl:Class ;
rdfs:label "Scope"^^xsd:string ;
rdfs:subClassOf vaem:Category ;
vaem:definition "Scope is used indicate a scope of relevance of an ontology. There are no instances of these properties in VAEM. Each context of use will need specific treatment."^^xsd:string .
vaem:ScriptGraph
rdf:type vaem:GraphRole ;
rdfs:label "Script graph"^^xsd:string .
vaem:ViewGraph
rdf:type vaem:GraphRole ;
rdfs:label "View graph"^^xsd:string .
vaem:Viewpoint
rdf:type owl:Class ;
rdfs:label "Viewpoint"^^xsd:string ;
rdfs:subClassOf vaem:Scope ;
vaem:definition "Viewpoint is used to denote how a set of resources, or an individual resource, is relevant to a context of use. The term 'viewpoint' is adopted from the ISO RM-ODP specifications and its more recent use in enterprise architecture descriptions. In 'lmc' the notion of 'Viewpoint' is used as a dimension for characterizing an ontology graph."^^xsd:string .
vaem:VocabularyGraph
rdf:type vaem:GraphRole ;
rdfs:label "Vocabulary graph"^^xsd:string ;
vaem:description "An RDF/OWL Graph that is a controlled set of instances."^^xsd:string .
vaem:acronym
rdf:type owl:DatatypeProperty ;
rdfs:label "acronym"^^xsd:string ;
vaem:definition "The property 'vaem:acronym' provides a common way to define a commonly used abbreviation on a resource."^^xsd:string .
vaem:dateCreated
rdf:type owl:DatatypeProperty ;
rdfs:label "date created"^^xsd:string ;
rdfs:range vaem:dateUnion ;
vaem:definition "The property 'vaem:dateCreated' is intended for general use as the name implies. The range of the property is set as 'vaem:dateUnion' so as to allow a value to have a number of forms from a year only to a full timestamp."^^xsd:string .
vaem:dateUnion
rdf:type rdfs:Datatype ;
rdfs:label "date union"^^xsd:string ;
rdfs:subClassOf rdfs:Resource ;
vaem:description "A data type that is the union of xsd:date, xsd:dateTime and xsd:gYear. LMC's 'dateUnion' is equivalent to the xsd specification that uses an xsd:union of memberTypes='xsd:date xsd:dateTime xsd:gYear'."^^xsd:string ;
owl:unionOf (xsd:date xsd:dateTime xsd:gYear) .
vaem:definition
rdf:type owl:DatatypeProperty ;
rdfs:label "definition"^^xsd:string ;
rdfs:range xsd:string ;
vaem:definition "A datatype property that can be freely used on any kind of resource. The range of the property is 'xsd:string'."^^xsd:string .
vaem:description
rdf:type owl:DatatypeProperty ;
rdfs:label "description"^^xsd:string ;
rdfs:range xsd:string ;
vaem:definition "The property 'vaem:description' is intended for general use as the name implies. Unlike 'vaem:definition', 'vaem:description' is an 'owl:DatatypeProperty'. As such it can play a stronger role in the model, for example, as a predicate in an axiom."^^xsd:string .
vaem:hasAspectScope
rdf:type rdf:Property ;
rdfs:label "has aspect scope"^^xsd:string ;
rdfs:subPropertyOf vaem:hasScope ;
vaem:definition "The property 'vaem:hasAspectScope' is used to distinguish among sets of features of a domain or subject area. The term is borrowed from 'aspect-oriented' programming, where it is used to separate concerns. An ontology may be characterized by this dimension so as to parition features that are orthogonal. For example, in an SBFI systems ontology we can distinguish aspects for 'structure', 'function', 'behavior' and 'interface'. The property is an 'rdf:Property' to allow both scalar and object values."^^xsd:string .
vaem:hasCatalogEntry
rdf:type owl:ObjectProperty ;
rdfs:label "has catalog entry"^^xsd:string .
vaem:hasDisciplineScope
rdf:type rdf:Property ;
rdfs:label "has discipline scope"^^xsd:string ;
rdfs:subPropertyOf vaem:hasScope ;
vaem:definition "The property 'vaem:hasDisciplineScope' is used to indicate relevance of a set of resources, or a resource itself, to a specific discipline of work or study. Examples of disciplines in the engineering domain are electrical engineering, mechanical engineering and, in the financial domain, risk assessment, investment analysis. In 'vaem' the property is used as a dimension for characterizing an ontology graph. The property is an 'rdf:Property' to allow both scalar and object values."^^xsd:string .
vaem:hasDomainScope
rdf:type rdf:Property ;
rdfs:label "has domain scope"^^xsd:string ;
rdfs:subPropertyOf vaem:hasScope ;
vaem:definition "The property 'vaem:hasDomainScope' is used to specify how a set of resources, or an individual resource is grounded in a domain, that is, a subject area of interest. Examples of domains are 'enterprise', 'process', 'organization' and 'system'. In 'lmc' the property is used as a dimension for characterizing an ontology graph. The property is an 'rdf:Property' to allow both scalar and object values."^^xsd:string .
vaem:hasRole
rdf:type owl:ObjectProperty ;
rdfs:label "has role"^^xsd:string ;
vaem:definition "The property 'lms:hasRole' is used to characterize how a resource participates in an ontology set. In 'lmc' the property is used to specify the role that a graph plays, for example, an ontology graph can be a schema, vocabulary, dataset, script, or ruleset."^^xsd:string .
vaem:hasScope
rdf:type rdf:Property ;
rdfs:label "has scope"^^xsd:string ;
vaem:definition "The property 'vaem:hasScope' is used indicate a scope of relevance of an ontology. In 'vaem' the property is used as a dimension for characterizing an ontology graph. The property is an 'rdf:Property' to allow both scalar and object values."^^xsd:string .
vaem:hasViewpointScope
rdf:type rdf:Property ;
rdfs:label "has viewpoint scope"^^xsd:string ;
rdfs:subPropertyOf vaem:hasScope ;
vaem:definition "The property 'vaem:hasViewpointScope' is used to denote how a set of resources, or an individual resource, is relevant to a context of use. The term 'viewpoint' is adopted from the ISO RM-ODP specifications and its more recent use in enterprise architecture descriptions. In 'lmc' the property is used as a dimension for characterizing an ontology graph. The property is an 'rdf:Property' to allow both scalar and object values."^^xsd:string .
vaem:id
rdf:type rdf:Property ;
rdfs:label "id"^^xsd:string ;
vaem:definition "The property 'vaem:id' is intended for general use as a means to specifiy an identifier. The type of this property is intentionally set to 'rdf:Property' so that use of the property can allow both object and scaler values. For this reason, the property is rangeless."^^xsd:string .
vaem:integer_1to5
rdf:type rdfs:Datatype ;
rdfs:label "integer 1 to 5"^^xsd:string ;
rdfs:subClassOf xsd:integer ;
owl:equivalentClass
[ rdf:type rdfs:Datatype ;
owl:onDatatype xsd:positiveInteger ;
owl:withRestrictions
([ xsd:maxInclusive "5"^^xsd:positiveInteger
])
] ;
owl:onDatatype xsd:positiveInteger .
vaem:intent
rdf:type owl:DatatypeProperty ;
rdfs:label "intent"^^xsd:string ;
rdfs:range xsd:string ;
vaem:definition "The property 'vaem:intent' is used to describe a statement of purpose. This typically takes the form of desired outcomes."^^xsd:string .
vaem:lastUpdated
rdf:type owl:DatatypeProperty ;
rdfs:label "last updated"^^xsd:string ;
rdfs:range vaem:dateUnion ;
vaem:definition "The property 'vaem:lastUpdated' is intended for general use as the name implies. The range of the property is set as 'vaem:dateUnion' so as to allow a value to have a number of forms from a year only to a full timestamp."^^xsd:string .
vaem:name
rdf:type owl:DatatypeProperty ;
rdfs:label "name"^^xsd:string ;
rdfs:range xsd:string ;
rdfs:subPropertyOf rdfs:label ;
vaem:definition "The property 'vaem:name' is intended for general use. In many cases 'rdfs:label' could be used give names to resources. In the case where compliance with a specific naming rule is needed, 'vaem:name' allows a resource to carry a name that is used in more specific contexts. Making 'vaem:name' a sub-property of 'rdfs:label' allows 'vaem:name' to serve in the same way as an 'rdfs:label'."^^xsd:string .
vaem:namespace
rdf:type owl:DatatypeProperty ;
rdfs:label "namespace"^^xsd:string ;
rdfs:range xsd:anyURI ;
vaem:definition "The property 'vaem:namespace' provides a means to specify the onotlogy URI with which a graph is primarily associated. The intent is to allow multiple graphs to define statements for resources in the same Ontology namespace. For example, a foundation level graph with the base URI of 'http://www.somesite.com/1.0/schema/OurOntology' may define general concepts for 'OurOntology'. Another graph with the base URI 'http://www.somesite.com/1.0/schema/level2/OurOntology' may add more specific details to the same 'OurOntology'. Each of these two graphs would carry the same value for 'vaem:namespace', that is, 'http://www.somesite.com/schema/OurOntology'. In other words, an ontology URI is the URI associated with the resources of a controlled namespace. On the other hand the graph URIs (the base URIs) identify the graphs that hold resources that make up an ontology."^^xsd:string .
vaem:namespacePrefix
rdf:type owl:DatatypeProperty ;
rdfs:label "namespace prefix"^^xsd:string ;
rdfs:range xsd:string ;
vaem:definition "The property 'vaem:namespacePrefix' specifes a short handle or label for the URI of an Ontology. Multiple graphs can define statements for resources in the same Ontololgy namespace. For example, a foundation level graph with the base URI of 'http://www.somesite.com/1.0/schema/OurOntology' may define general concepts for 'OurOntology'. Another graph with the base URI 'http://www.somesite.com/1.0/schema/level2/OurOntology' may add more specific details to the same 'OurOntology'. Each of these two graphs would carry the same value for 'vaem:namespacePrefix', for this example, perhaps, 'ourOntology'."^^xsd:string .
vaem:numericUnion
rdf:type rdfs:Datatype ;
rdfs:label "numeric union"^^xsd:string ;
rdfs:subClassOf rdfs:Resource ;
vaem:description "A datatype that is the union of numeric xsd data types. LMC's 'numericUnion' is equivalent to the xsd specification that uses an xsd:union of memberTypes='xsd:decimal xsd:double xsd:float xsd:integer'."^^xsd:string ;
owl:unionOf (xsd:float xsd:decimal xsd:integer xsd:double) .
vaem:ownedBy
rdf:type rdf:Property ;
rdfs:label "owned by"^^xsd:string ;
vaem:definition "The property 'vaem:ownedBy' is a general property that in some cases could have scalar values and in other cases may need to refer to some concept of 'Party'. For this reason, the type of this property is set as 'rdf:Property' and the property is rangeless."^^xsd:string .
vaem:releaseDate
rdf:type owl:DatatypeProperty ;
rdfs:label "release date"^^xsd:string ;
rdfs:range vaem:dateUnion ;
vaem:definition "The property 'vaem:releaseDate' is intended for general use as the name implies. The range of the property is set as 'vaem:dateUnion' so as to allow a value to have a number of forms from a year only to a full timestamp."^^xsd:string .
vaem:revision
rdf:type owl:AnnotationProperty ;
rdfs:label "revision"^^xsd:string ;
rdfs:range xsd:string ;
vaem:definition "The property 'vaem:revision' is an annotation property intended for general use as the name implies. "^^xsd:string .
vaem:revisionDate
rdf:type owl:DatatypeProperty ;
rdfs:label "revision date"^^xsd:string ;
rdfs:range xsd:dateTime ;
vaem:definition "The property 'vaem:revisionDate' is intended for general use as the name implies. The range of the property is 'xsd:dateTime'."^^xsd:string .
vaem:revisionNumber
rdf:type owl:DatatypeProperty ;
rdfs:label "revision number"^^xsd:string ;
rdfs:range xsd:string ;
vaem:definition "The property 'vaem:revisionNumber' is intended for general use as the name implies."^^xsd:string .
vaem:specificity
rdf:type owl:DatatypeProperty ;
rdfs:label "specificity"^^xsd:string ;
rdfs:range vaem:integer_1to5 ;
vaem:definition "The property 'vaem:specificity' is intended to specify the level of detail of an ontology. The values that can be set for this property are restriced to an integer from 1 to 5. An ontology at level 1 has concepts of more general applicability than one at level 5. By having graphs at different levels of specificity it is possible to support greater modularity for selective imports."^^xsd:string .
vaem:timestamp
rdf:type owl:DatatypeProperty ;
rdfs:label "timestamp"^^xsd:string ;
rdfs:range xsd:dateTime ;
vaem:definition "The property 'vaem:timestamp' is intended for general use as the name implies. The range of the property is an XSD data time."^^xsd:string .
vaem:url
rdf:type owl:DatatypeProperty ;
rdfs:label "url"^^xsd:string ;
rdfs:range xsd:anyURI ;
vaem:definition "The property 'vaem:url' is intended for general use as the name implies. The range of the property is set as an XSD URI."^^xsd:string .
vaem:usesNonImportedResource
rdf:type owl:ObjectProperty ;
rdfs:label "uses non-imported resource"^^xsd:string ;
rdfs:range rdfs:Resource ;
vaem:definition "A general property that has multiple uses. In VAEM it is used on owl:Ontology to express dependencies on resources from graphs that are not imported."^^xsd:string .
owl:Ontology
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:dateCreated
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:lastUpdated
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:namespace
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:namespacePrefix
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:specificity
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom vaem:integer_1to5 ;
owl:onProperty vaem:specificity
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:ownedBy
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:hasDomainScope
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom rdfs:Resource ;
owl:onProperty vaem:usesNonImportedResource
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:hasAspectScope
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:intent
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:acronym
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:hasViewpointScope
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty vaem:description
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:hasDisciplineScope
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:allValuesFrom vaem:GraphRole ;
owl:onProperty vaem:hasRole
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:hasCatalogEntry
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:revisionNumber
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:hasScope
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty vaem:hasDomainScope
] .
# Saved by TopBraid on Thu Aug 18 00:46:08 BST 2011
# baseURI: http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm
# imports: http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model
@prefix : <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#> .
@prefix iso-tm: <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class>
rdf:type owl:Class .
<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Thing>
rdf:type owl:Class ;
owl:disjointWith iso-tm:Template , iso-tm:TemplateRole , iso-tm:TemplateStatement .
<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm>
rdf:type owl:Ontology ;
rdfs:comment "This ontology provides basic classes for representing ISO 15926-8 template signatures. It depends on an OWL taxonomy representation of ISO 15926-2 entity types." ;
owl:imports <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
iso-tm:BaseTemplate
rdf:type owl:Class ;
rdfs:comment "A base template makes no reference to entities beyond the generic types defined in ISO 15926-2." ;
rdfs:label "BaseTemplate" ;
rdfs:subClassOf iso-tm:Template ;
owl:disjointWith iso-tm:RDLTemplate .
iso-tm:BaseTemplateStatement
rdf:type owl:Class ;
rdfs:comment "The class of \"base\" template statements covers all the typical cases of statements used to carry data. It is distinguished from template meta-statements, which are used to characterize templates themselves." ;
rdfs:label "BaseTemplateStatement" ;
rdfs:subClassOf iso-tm:TemplateStatement ;
owl:disjointWith iso-tm:MetaTemplateStatement .
iso-tm:MetaTemplateStatement
rdf:type owl:Class ;
rdfs:comment """A template statement (template instance) that characterizes a template. For templates themselves, we record the number of roles. For roles, we record for each template their type constraints and positions.
Various provenance information about templates would also belong here.""" ;
rdfs:label "MetaTemplateStatement" ;
rdfs:subClassOf iso-tm:TemplateStatement .
iso-tm:RDLTemplate
rdf:type owl:Class ;
rdfs:comment """An RDL template makes reference to entities defined in at least one Reference Data Library.
Note. This does not in itself mean that the template has roles constrained to RDL classes. The reference to RDL content may be embedded in the intended use of the template; or in the expansion rule of the template, as given according to ISO 15926-7.
Note. Any RDL template should be defined as a template specialization of a base template.""" ;
rdfs:label "CoreTemplate" ;
rdfs:subClassOf iso-tm:Template .
iso-tm:RDLTemplateStatement
rdf:type owl:Class ;
rdfs:comment "An RDLtemplateStatement is an instance of an RDL template. See the definition of RDLTemplate." ;
rdfs:label "RDLTemplateStatement" ;
rdfs:subClassOf iso-tm:BaseTemplateStatement .
iso-tm:RDLcoreTemplate
rdf:type owl:Class ;
rdfs:comment "An RDLcoreTemplate is an RDL template for references to RDL content are restricted to core (highly generic, not industry specific) RDL entities." ;
rdfs:label "RDLcoreTemplate" ;
rdfs:subClassOf iso-tm:RDLTemplate ;
owl:disjointWith iso-tm:RDLindustryTemplate .
iso-tm:RDLcoreTemplateStatement
rdf:type owl:Class ;
rdfs:label "RDLcoreTemplateStatement" ;
rdfs:subClassOf iso-tm:RDLTemplateStatement .
iso-tm:RDLindustryTemplate
rdf:type owl:Class ;
rdfs:comment "An RDL industry template is an RDL template which makes some reference to industry-specific RDL entities." ;
rdfs:label "RDLindustryTemplate" ;
rdfs:subClassOf iso-tm:RDLTemplate .
iso-tm:RDLindustryTemplateStatement
rdf:type owl:Class ;
rdfs:label "RDLindustryTemplateStatement" ;
rdfs:subClassOf iso-tm:RDLTemplateStatement .
iso-tm:Template
rdf:type owl:Class ;
rdfs:comment "A Template is a predicate defined according to ISO 15926-7 template signature specification requirements. For this OWL representation, the transparent OWL 2 punning mechanism is relied upon for treating templates, which are really classes, as individuals. The individuals in this class are punned templates." ;
rdfs:label "Template" .
iso-tm:TemplateDescription
rdf:type owl:Class ;
rdfs:label "TemplateDescription" ;
rdfs:subClassOf iso-tm:MetaTemplateStatement ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom xsd:positiveInteger ;
owl:onProperty iso-tm:valNumberOfRoles
] [ rdf:type owl:Restriction ;
owl:onDataRange xsd:positiveInteger ;
owl:onProperty iso-tm:valNumberOfRoles ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom iso-tm:Template ;
owl:onProperty iso-tm:hasTemplate
] [ rdf:type owl:Restriction ;
owl:onClass iso-tm:Template ;
owl:onProperty iso-tm:hasTemplate ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] .
iso-tm:TemplateRole
rdf:type owl:Class ;
rdfs:comment "A TemplateRole is a role defined according to ISO 15926-7 template signature specification requirements. For this OWL representation, the transparent OWL 2 punning mechanism is relied upon for treating template roles, which are really relations, as individuals. The individuals in this class are punned template roles." ;
rdfs:label "TemplateRole" .
iso-tm:TemplateRoleDescription
rdf:type owl:Class ;
rdfs:label "TemplateRoleDescription" ;
rdfs:subClassOf iso-tm:MetaTemplateStatement ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom iso-tm:Template ;
owl:onProperty iso-tm:hasTemplate
] [ rdf:type owl:Restriction ;
owl:onClass iso-tm:Template ;
owl:onProperty iso-tm:hasTemplate ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom xsd:integer ;
owl:onProperty iso-tm:valRoleIndex
] [ rdf:type owl:Restriction ;
owl:onDataRange xsd:integer ;
owl:onProperty iso-tm:valRoleIndex ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class> ;
owl:onProperty iso-tm:hasRoleFillerType
] [ rdf:type owl:Restriction ;
owl:onClass <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class> ;
owl:onProperty iso-tm:hasRoleFillerType ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom iso-tm:TemplateRole ;
owl:onProperty iso-tm:hasRole
] [ rdf:type owl:Restriction ;
owl:onClass iso-tm:TemplateRole ;
owl:onProperty iso-tm:hasRole ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] .
iso-tm:TemplateSpecialization
rdf:type owl:Class ;
rdfs:label "TemplateSpecialization" ;
rdfs:subClassOf iso-tm:MetaTemplateStatement ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom iso-tm:Template ;
owl:onProperty iso-tm:hasSuperTemplate
] [ rdf:type owl:Restriction ;
owl:onClass iso-tm:Template ;
owl:onProperty iso-tm:hasSuperTemplate ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] ;
rdfs:subClassOf
[ rdf:type owl:Class ;
owl:intersectionOf ([ rdf:type owl:Restriction ;
owl:allValuesFrom iso-tm:Template ;
owl:onProperty iso-tm:hasSubTemplate
] [ rdf:type owl:Restriction ;
owl:onClass iso-tm:Template ;
owl:onProperty iso-tm:hasSubTemplate ;
owl:qualifiedCardinality
"1"^^xsd:nonNegativeInteger
])
] .
iso-tm:TemplateStatement
rdf:type owl:Class ;
rdfs:comment "A template statement is an instance of a template. Example: Given a template F with signature specifying the roles R1, R2 of types, resp., T1, T2. If a and b are individuals, then F(a,b) is a template statement." ;
rdfs:label "TemplateStatement" ;
owl:equivalentClass
[ rdf:type owl:Class ;
owl:unionOf (iso-tm:BaseTemplateStatement iso-tm:MetaTemplateStatement)
] .
iso-tm:hasBaseTemplateObjectRoleFiller
rdf:type owl:ObjectProperty ;
rdfs:comment "This is a super-property for properties used in ordinary template statements, used to carry data (and not for characterizing templates themselves). A \"content\" template may not refer to templates or template roles themselves: Therefore the range of this property is dm:Thing." ;
rdfs:label "hasBaseTemplateObjectRoleFiller" ;
rdfs:range <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Thing> ;
rdfs:subPropertyOf iso-tm:hasObjectRoleFiller .
iso-tm:hasMetaTemplateObjectRoleFiller
rdf:type owl:ObjectProperty ;
rdfs:comment "This property is a super-property for properties used in meta-template statements, i.e., properties used to characterize templates." ;
rdfs:label "hasMetaTemplateObjectRoleFiller" ;
rdfs:subPropertyOf iso-tm:hasObjectRoleFiller .
iso-tm:hasObjectRoleFiller
rdf:type owl:ObjectProperty ;
rdfs:label "hasObjectRoleFiller" .
iso-tm:hasRole
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "Used in meta-template TemplateRoleDescription to indicate which role is being described." ;
rdfs:domain iso-tm:TemplateRoleDescription ;
rdfs:label "role" ;
rdfs:range iso-tm:TemplateRole ;
rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller .
iso-tm:hasRoleFillerType
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "Used in meta-template TemplateRoleDescription to indicate which class any role-filler needs to belong to. That is, this property records the type constraint on individuals filling this role." ;
rdfs:domain iso-tm:TemplateRoleDescription ;
rdfs:label "type" ;
rdfs:range <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class> ;
rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller .
iso-tm:hasSubTemplate
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "Used in meta-template TemplateSpecialization to indicate which template is the sub-template in a specialization relationship. Use this property to indicate the template which is more constrained than its supertemplate." ;
rdfs:domain iso-tm:TemplateSpecialization ;
rdfs:label "hasSubTemplate" ;
rdfs:range iso-tm:Template ;
rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller .
iso-tm:hasSuperTemplate
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "Used in meta-template TemplateSpecialization to indicate which template is the super-template in a specialization relationship. Use this property to indicate the template which is less constrained than its subtemplate." ;
rdfs:domain iso-tm:TemplateSpecialization ;
rdfs:label "hasSuperTemplate" ;
rdfs:range iso-tm:Template ;
rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller .
iso-tm:hasTemplate
rdf:type owl:ObjectProperty , owl:FunctionalProperty ;
rdfs:comment "Used in meta-templates TemplateDescription and TemplateRoleDescription to record which template a statement applies to: which template is being described." ;
rdfs:domain
[ rdf:type owl:Class ;
owl:unionOf (iso-tm:TemplateDescription iso-tm:TemplateRoleDescription)
] ;
rdfs:label "isAboutTemplate" ;
rdfs:range iso-tm:Template ;
rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller .
iso-tm:valBaseTemplateDataRoleFiller
rdf:type owl:DatatypeProperty ;
rdfs:label "valBaseTemplateDataRoleFiller" ;
rdfs:subPropertyOf iso-tm:valDataRoleFiller .
iso-tm:valDataRoleFiller
rdf:type owl:DatatypeProperty ;
rdfs:label "valDataRoleFiller" .
iso-tm:valMetaTemplateDataRoleFiller
rdf:type owl:DatatypeProperty ;
rdfs:label "valMetaTemplateDataRoleFiller" ;
rdfs:subPropertyOf iso-tm:valDataRoleFiller .
iso-tm:valNumberOfRoles
rdf:type owl:DatatypeProperty ;
rdfs:comment "Used in meta-template TemplateDescription to say how many roles a template is defined to have." ;
rdfs:label "numberOfRoles" ;
rdfs:range xsd:int ;
rdfs:subPropertyOf iso-tm:valMetaTemplateDataRoleFiller .
iso-tm:valRoleIndex
rdf:type owl:DatatypeProperty ;
rdfs:comment "Used in meta-template TemplateRoleDescription to record the position of a role in a template." ;
rdfs:label "positionInTemplate" ;
rdfs:range xsd:int ;
rdfs:subPropertyOf iso-tm:valMetaTemplateDataRoleFiller .
[] rdf:type owl:AllDisjointClasses ;
owl:members (iso-tm:Template iso-tm:TemplateRole iso-tm:TemplateStatement) .
[] rdf:type owl:AllDisjointClasses ;
owl:members (iso-tm:TemplateDescription iso-tm:TemplateRoleDescription iso-tm:TemplateSpecialization) .
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
# baseURI: http://uispin.org/swon
# imports: http://uispin.org/ui
@prefix arg: <http://spinrdf.org/arg#> .
@prefix let: <http://uispin.org/let#> .
@prefix letrs: <http://uispin.org/letrs#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix spif: <http://spinrdf.org/spif#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix spl: <http://spinrdf.org/spl#> .
@prefix spr: <http://spinrdf.org/spr#> .
@prefix swon: <http://uispin.org/swon#> .
@prefix ui: <http://uispin.org/ui#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
arg:labelFunction
rdf:type rdf:Property ;
rdfs:label "label function"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
arg:name
rdf:type rdf:Property ;
rdfs:label "name"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
arg:resultSet
rdf:type rdf:Property ;
rdfs:label "result set"^^xsd:string ;
rdfs:subPropertyOf ui:resultSet .
arg:rowIndex
rdf:type rdf:Property ;
rdfs:label "row index"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
arg:value
rdf:type rdf:Property ;
rdfs:label "value"^^xsd:string ;
rdfs:subPropertyOf sp:arg .
<http://uispin.org/swon>
rdf:type owl:Ontology ;
rdfs:comment "A library of SWP elements for creating JSON text output."^^xsd:string ;
owl:imports <http://uispin.org/ui> ;
owl:versionInfo "0.1.0"^^xsd:string .
swon:Elements
rdf:type ui:NodeClass ;
rdfs:comment "Abstract superclass of the JSON elements."^^xsd:string ;
rdfs:label "JSON Elements"^^xsd:string ;
rdfs:subClassOf ui:Element ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "An option function that can be used to transform the values before they are inserted into the name-value pairs. A typical use case is to use ui:label."^^xsd:string ;
spl:optional "true"^^xsd:boolean ;
spl:predicate arg:labelFunction ;
spl:valueType spin:Function
] ;
ui:abstract "true"^^xsd:boolean .
swon:ForEachResultSetColumnIndex
rdf:type spin:SelectTemplate ;
rdfs:label "For each result set column index"^^xsd:string ;
rdfs:subClassOf spin:SelectTemplates ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables ([ sp:varName "colIndex"^^xsd:string
]) ;
sp:where ([ sp:object
[ sp:varName "colIndex"^^xsd:string
] ;
sp:predicate spr:colIndices ;
sp:subject
[ sp:varName "resultSet"^^xsd:string
]
])
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set to get all column indices of."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] .
swon:ForEachResultSetRowIndex
rdf:type spin:SelectTemplate ;
rdfs:label "For each result set row index"^^xsd:string ;
rdfs:subClassOf spin:SelectTemplates ;
spin:body
[ rdf:type sp:Select ;
sp:resultVariables ([ sp:varName "rowIndex"^^xsd:string
]) ;
sp:where ([ sp:object
[ sp:varName "rowIndex"^^xsd:string
] ;
sp:predicate spr:rowIndices ;
sp:subject
[ sp:varName "resultSet"^^xsd:string
]
])
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set to get all column indices of."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] .
swon:NameValuePair
rdf:type ui:NodeClass ;
rdfs:label "Name value pair"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The name of the variable."^^xsd:string ;
spl:predicate arg:name ;
spl:valueType xsd:string
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The value (will be rendered as null if unbound)."^^xsd:string ;
spl:optional "true"^^xsd:boolean ;
spl:predicate arg:value
] ;
ui:prototype
[ rdf:type ui:group ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "\""^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 1 ;
ui:text [ sp:varName "name"^^xsd:string
]
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "\":"^^xsd:string
] ;
ui:child
[ rdf:type ui:if ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "\""^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 1 ;
ui:text [ rdf:type ui:escapeJSON ;
sp:arg1 [ rdf:type sp:if ;
sp:arg1 [ rdf:type sp:bound ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
]
] ;
sp:arg2 [ rdf:type spif:invoke ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
] ;
sp:arg2 [ sp:varName "value"^^xsd:string
]
] ;
sp:arg3 [ rdf:type xsd:string ;
sp:arg1 [ sp:varName "value"^^xsd:string
]
]
]
]
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "\""^^xsd:string
] ;
ui:childIndex 3 ;
ui:condition
[ rdf:type sp:bound ;
sp:arg1 [ sp:varName "value"^^xsd:string
]
]
] ;
ui:child
[ rdf:type ui:else ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "null"^^xsd:string
] ;
ui:childIndex 4
]
] .
swon:RSArray
rdf:type ui:NodeClass ;
rdfs:comment "Creates a simple JSON array with all values from the first column of a given result set, e.g. ['A','B','C']."^^xsd:string ;
rdfs:label "RS Array"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set to walk through."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] ;
ui:prototype
[ rdf:type ui:call ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "["^^xsd:string
] ;
ui:child
[ rdf:type ui:forEach ;
ui:child
[ rdf:type ui:group ;
let:value
[ rdf:type spr:cell ;
sp:arg1 [ sp:varName "resultSet"^^xsd:string
] ;
sp:arg2 [ sp:varName "rowIndex"^^xsd:string
] ;
sp:arg3 0
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "\""^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 1 ;
ui:text [ rdf:type ui:escapeJSON ;
sp:arg1 [ rdf:type sp:if ;
sp:arg1 [ rdf:type sp:bound ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
]
] ;
sp:arg2 [ rdf:type spif:invoke ;
sp:arg1 [ sp:varName "labelFunction"^^xsd:string
] ;
sp:arg2 [ sp:varName "value"^^xsd:string
]
] ;
sp:arg3 [ rdf:type xsd:string ;
sp:arg1 [ sp:varName "value"^^xsd:string
]
]
]
]
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "\""^^xsd:string
] ;
ui:childIndex 0
] ;
ui:childIndex 1 ;
ui:resultSet
[ sp:varName "rs"^^xsd:string
] ;
ui:separator ","^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "]"^^xsd:string
] ;
ui:template swon:ForEachResultSetRowIndex
] .
swon:RSObject
rdf:type ui:NodeClass ;
rdfs:label "RS object"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set containing the name-value pairs - the names are the result variables. If the optional row index isn't present, the system will use the first row."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The (optional) row index to select the object."^^xsd:string ;
spl:optional "true"^^xsd:boolean ;
spl:predicate arg:rowIndex ;
spl:valueType xsd:integer
] ;
ui:prototype
[ rdf:type ui:call ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "{"^^xsd:string
] ;
ui:child
[ rdf:type ui:forEach ;
ui:child
[ rdf:type swon:NameValuePair ;
arg:labelFunction
[ sp:varName "labelFunction"^^xsd:string
] ;
arg:name
[ rdf:type spr:colName ;
sp:arg1 [ sp:varName "resultSet"^^xsd:string
] ;
sp:arg2 [ sp:varName "colIndex"^^xsd:string
]
] ;
arg:value
[ rdf:type spr:cell ;
sp:arg1 [ sp:varName "resultSet"^^xsd:string
] ;
sp:arg2 [ rdf:type sp:coalesce ;
sp:arg1 [ sp:varName "rowIndex"^^xsd:string
] ;
sp:arg2 0
] ;
sp:arg3 [ sp:varName "colIndex"^^xsd:string
]
] ;
ui:childIndex 0
] ;
ui:childIndex 1 ;
ui:resultSet
[ sp:varName "rs"^^xsd:string
] ;
ui:separator ","^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "}"^^xsd:string
] ;
ui:template swon:ForEachResultSetColumnIndex
] .
swon:RSObjectArray
rdf:type ui:NodeClass ;
rdfs:comment "Creates a JSON array from a result set where each item is a swon:RSObject, with fields for each variable."^^xsd:string ;
rdfs:label "RS object array"^^xsd:string ;
rdfs:subClassOf swon:Elements ;
spin:constraint
[ rdf:type spl:Argument ;
rdfs:comment "The result set delivering the rows."^^xsd:string ;
spl:predicate arg:resultSet ;
spl:valueType sp:Select
] ;
ui:prototype
[ rdf:type ui:call ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 0 ;
ui:text "["^^xsd:string
] ;
ui:child
[ rdf:type ui:forEach ;
ui:child
[ rdf:type swon:RSObject ;
arg:labelFunction
[ sp:varName "labelFunction"^^xsd:string
] ;
arg:resultSet
[ sp:varName "resultSet"^^xsd:string
] ;
arg:rowIndex
[ sp:varName "rowIndex"^^xsd:string
] ;
ui:childIndex 0
] ;
ui:childIndex 1 ;
ui:resultSet
[ sp:varName "rs"^^xsd:string
] ;
ui:separator ","^^xsd:string
] ;
ui:child
[ rdf:type ui:TextNode ;
ui:childIndex 2 ;
ui:text "]"^^xsd:string
] ;
ui:template swon:ForEachResultSetRowIndex
] .