https://ontology.unifiedcyberontology.org/uco/tool/BuildInformationType
A build information type is a grouping of characteristics that describe how a particular version of software was converted from source code to executable code.
Instances of tool:BuildInformationType can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
tool:BuildInformationType | ||||
tool:buildConfiguration | 1 |
configuration:Configuration
|
||
tool:buildID | 1 |
xsd:string
|
||
tool:buildLabel | 1 |
xsd:string
|
||
tool:buildOutputLog | 1 |
xsd:string
|
||
tool:buildProject | 1 |
xsd:string
|
||
tool:buildScript | 1 |
xsd:string
|
||
tool:buildUtility | 1 |
tool:BuildUtilityType
|
||
tool:buildVersion | 1 |
xsd:string
|
||
tool:compilationDate | 1 |
xsd:dateTime
|
||
tool:compilers |
tool:CompilerType
|
|||
tool:libraries |
tool:LibraryType
|
@prefix configuration: <https://ontology.unifiedcyberontology.org/uco/configuration/> .
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@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://ontology.unifiedcyberontology.org/uco/tool/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
tool:BuildInformationType a owl:Class,
sh:NodeShape ;
rdfs:label "BuildInformationType"@en ;
rdfs:comment "A build information type is a grouping of characteristics that describe how a particular version of software was converted from source code to executable code."@en ;
rdfs:subClassOf core:UcoInherentCharacterizationThing ;
sh:property [ sh:class configuration:Configuration ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path tool:buildConfiguration ],
[ sh:class tool:BuildUtilityType ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path tool:buildUtility ],
[ sh:class tool:CompilerType ;
sh:nodeKind sh:IRI ;
sh:path tool:compilers ],
[ sh:class tool:LibraryType ;
sh:nodeKind sh:IRI ;
sh:path tool:libraries ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:compilationDate ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:buildID ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:buildLabel ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:buildOutputLog ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:buildProject ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:buildScript ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path tool:buildVersion ] ;
sh:targetClass tool:BuildInformationType .