https://unifiedcyberontology.org/ontology/uco/tool#LibraryType
Instances of tool:LibraryType can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
LOCAL TYPE |
GLOBAL RANGE |
---|---|---|---|---|---|---|---|
tool:LibraryType | |||||||
tool:libraryName | owl:DatatypeProperty |
The name of the library.
|
1 | 1 |
|
xsd:string
|
xsd:string
|
tool:libraryVersion | owl:DatatypeProperty |
The version of the library.
|
1 | 1 |
|
xsd:string
|
xsd:string
|
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix tool: <https://unifiedcyberontology.org/ontology/uco/tool#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
tool:LibraryType a owl:Class,
sh:NodeShape ;
rdfs:label "LibraryType"@en ;
rdfs:comment "A library type is a grouping of characteristics unique to a collection of resources incorporated into the build of a software."@en ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:libraryName ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:libraryVersion ] ;
sh:targetClass tool:LibraryType .