https://unifiedcyberontology.org/ontology/uco/tool#BuildUtilityType
Instances of tool:BuildUtilityType can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
TYPE |
---|---|---|---|---|
tool:BuildUtilityType | ||||
tool:buildUtilityName | 1 | 1 |
|
xsd:string
|
tool:cpeid | 0 | 1 |
|
xsd:string
|
tool:swid | 0 | 1 |
|
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:BuildUtilityType a owl:Class,
sh:NodeShape ;
rdfs:label "BuildUtilityType"@en ;
rdfs:comment "A build utility type characterizes the tool used to convert from source code to executable code for a particular version of software."@en ;
sh:property [ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:buildUtilityName ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:cpeid ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:swid ] ;
sh:targetClass tool:BuildUtilityType .