You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No effects were observed on Make-managed files.
AJN: This is my transcription of Sean's Issue Comment (see references),
with a few minor grammatical and typographical fixes.
References:
* #596 (comment)
Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
Copy file name to clipboardExpand all lines: ontology/uco/observable/observable.ttl
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -879,6 +879,7 @@ observable:BuildUtility
879
879
sh:NodeShape
880
880
;
881
881
rdfs:subClassOf observable:Software ;
882
+
rdfs:comment "A Build Utility is a software-based tool that automates portions or all of the process of creating executable software from source code."@en ;
882
883
.
883
884
884
885
observable:Calendar
@@ -1237,6 +1238,7 @@ observable:Compiler
1237
1238
sh:NodeShape
1238
1239
;
1239
1240
rdfs:subClassOf observable:Software ;
1241
+
rdfs:comment "A Compiler is a software program that translates source code written in a high-level language (e.g., C++, Python, Java) into machine code that can be understood and executed by a computer processor."@en ;
1240
1242
.
1241
1243
1242
1244
observable:CompressedStreamFacet
@@ -2254,6 +2256,7 @@ observable:DeploymentScript
2254
2256
sh:NodeShape
2255
2257
;
2256
2258
rdfs:subClassOf observable:Script ;
2259
+
rdfs:comment "A Deployment Script is a software script used to deploy artifacts, packages, modules, patches, or other resources into an intended execution environment."@en ;
2257
2260
.
2258
2261
2259
2262
observable:Device
@@ -4060,7 +4063,7 @@ observable:LinuxService
4060
4063
;
4061
4064
rdfs:subClassOf observable:Service ;
4062
4065
rdfs:label "LinuxService"@en ;
4063
-
rdfs:comment "A Linux service is a specific Linux service (a computer program that operates in the background of a Linux operating system, similar to the way a UNIX daemon runs on UNIX). [based on observable:WindowsService]"@en ;
4066
+
rdfs:comment "A Linux Service (often referred to as a daemon) is a Service running within a Linux operating system, similar to the way a Windows Service runs on Windows."@en ;
4064
4067
sh:targetClass observable:LinuxService ;
4065
4068
.
4066
4069
@@ -4070,6 +4073,7 @@ observable:LinuxTask
4070
4073
sh:NodeShape
4071
4074
;
4072
4075
rdfs:subClassOf observable:Task ;
4076
+
rdfs:comment "A Linux Task is a set of software computer instructions loaded into memory with the potential to be scheduled for execution within the Linux operating system."@en ;
4073
4077
.
4074
4078
4075
4079
observable:MACAddress
@@ -5375,6 +5379,7 @@ observable:Package
5375
5379
sh:NodeShape
5376
5380
;
5377
5381
rdfs:subClassOf observable:Software ;
5382
+
rdfs:comment "A Package is a body of software consisting of a collection of individual software (programs, libraries, files, etc.) packaged together to collectively serve a broader purpose."@en ;
5378
5383
.
5379
5384
5380
5385
observable:PathRelationFacet
@@ -5461,7 +5466,7 @@ observable:Process
5461
5466
;
5462
5467
rdfs:subClassOf observable:ObservableObject ;
5463
5468
rdfs:label "Process"@en ;
5464
-
rdfs:comment "A process is an instance of a computer program executed on an operating system."@en ;
5469
+
rdfs:comment "A Process is an instance of a software program that is being executed within a scope having dedicated memory, address space, execution variables, code instructions, state, security info, file handles, etc. Process execution consists of one or more component threads sharing the process resources."@en ;
5465
5470
rdfs:seeAlso [
5466
5471
a sh:NodeShape ;
5467
5472
rdfs:comment "This anonymous shape is attached with rdfs:seeAlso in order to associate a warning-severity class constraint, that will only be necessary as an independent shape until UCO 2.0.0."@en ;
@@ -5564,7 +5569,7 @@ observable:ProcessThread
5564
5569
;
5565
5570
rdfs:subClassOf observable:ObservableObject ;
5566
5571
rdfs:label "ProcessThread"@en ;
5567
-
rdfs:comment "A process thread is the smallest sequence of programmed instructions that can be managed independently by a scheduler on a computer, which is typically a part of the operating system. It is a component of a process. Multiple threads can exist within one process, executing concurrently and sharing resources such as memory, while different processes do not share these resources. In particular, the threads of a process share its executable code and the values of its dynamically allocated variables and non-thread-local global variables at any given time. [based on https://en.wikipedia.org/wiki/Thread_(computing)]"@en ;
5572
+
rdfs:comment "A Process Thread is the smallest sequence of programmed instructions that can be managed independently by a scheduler on a computer, which is typically a part of the operating system. It is a scheduled running instantiation of one or more tasks (including CPU flags, counters, timers, stack, etc.) as a component of a process. Multiple threads can exist within one process, executing concurrently and sharing resources such as memory, while different processes do not share these resources. In particular, the threads of a process share its executable code and the values of its dynamically allocated variables and non-thread-local global variables at any given time. [based on https://en.wikipedia.org/wiki/Thread_(computing)]"@en ;
5568
5573
rdfs:seeAlso [
5569
5574
a sh:NodeShape ;
5570
5575
rdfs:comment "This anonymous shape is attached with rdfs:seeAlso in order to associate a warning-severity class constraint, that will only be necessary as an independent shape until UCO 2.0.0."@en ;
@@ -6151,6 +6156,7 @@ observable:Script
6151
6156
sh:NodeShape
6152
6157
;
6153
6158
rdfs:subClassOf observable:Software ;
6159
+
rdfs:comment "A Script is a software consisting of computer instructions that can be interpreted and executed in real-time (typically by an interpreter rather than directly by a computer processor) without requiring advance compilation."@en ;
6154
6160
.
6155
6161
6156
6162
observable:SecurityAppliance
@@ -6209,6 +6215,7 @@ observable:Service
6209
6215
sh:NodeShape
6210
6216
;
6211
6217
rdfs:subClassOf observable:Process ;
6218
+
rdfs:comment "A Service is a process that runs in the background rather than under the control of an interactive user. Services are typically long-running and can be configured to start when the operating system starts and continue as long as the operating system is running."@en ;
6212
6219
.
6213
6220
6214
6221
observable:ServicePack
@@ -6217,6 +6224,7 @@ observable:ServicePack
6217
6224
sh:NodeShape
6218
6225
;
6219
6226
rdfs:subClassOf observable:Software ;
6227
+
rdfs:comment "A Service Pack is a software consisting of a collection of software updates or fixes (patches) for a software delivered as an aggregated single package for ease of installation."@en ;
6220
6228
.
6221
6229
6222
6230
observable:ShopListing
@@ -6306,6 +6314,7 @@ observable:SoftwareBuild
6306
6314
sh:NodeShape
6307
6315
;
6308
6316
rdfs:subClassOf observable:Software ;
6317
+
rdfs:comment "A Software Build is a particular executable version of software that has been created from source code and is ready for testing or deployment."@en ;
6309
6318
.
6310
6319
6311
6320
observable:SoftwareFacet
@@ -6595,7 +6604,8 @@ observable:Task
6595
6604
owl:Class ,
6596
6605
sh:NodeShape
6597
6606
;
6598
-
rdfs:subClassOf observable:Process ;
6607
+
rdfs:subClassOf observable:Software ;
6608
+
rdfs:comment "A Task is a set of software computer instructions loaded into memory with the potential to be scheduled for execution."@en ;
6599
6609
.
6600
6610
6601
6611
observable:TaskActionType
@@ -8647,7 +8657,7 @@ observable:WindowsService
8647
8657
;
8648
8658
rdfs:subClassOf observable:ObservableObject ;
8649
8659
rdfs:label "WindowsService"@en ;
8650
-
rdfs:comment "A Windows service is a specific Windows service (a computer program that operates in the background of a Windows operating system, similar to the way a UNIX daemon runs on UNIX). [based on https://en.wikipedia.org/wiki/Windows_service]"@en ;
8660
+
rdfs:comment "A Windows Service is a Service running within a Windows operating system, similar to the way a UNIX daemon runs on UNIX. [based on https://en.wikipedia.org/wiki/Windows_service]"@en ;
8651
8661
rdfs:seeAlso [
8652
8662
a sh:NodeShape ;
8653
8663
rdfs:comment "This anonymous shape is attached with rdfs:seeAlso in order to associate a warning-severity class constraint, that will only be necessary as an independent shape until UCO 2.0.0."@en ;
@@ -8780,7 +8790,7 @@ observable:WindowsTask
8780
8790
;
8781
8791
rdfs:subClassOf observable:ObservableObject ;
8782
8792
rdfs:label "WindowsTask"@en ;
8783
-
rdfs:comment "A Windows task is a process that is scheduled to execute on a Windows operating system by the Windows Task Scheduler. [based on http://msdn.microsoft.com/en-us/library/windows/desktop/aa381311(v=vs.85).aspx]"@en ;
8793
+
rdfs:comment "A Windows Task is a set of software computer instructions loaded into memory with the potential to be scheduled for execution within the Windows operating system."@en ;
8784
8794
rdfs:seeAlso [
8785
8795
a sh:NodeShape ;
8786
8796
rdfs:comment "This anonymous shape is attached with rdfs:seeAlso in order to associate a warning-severity class constraint, that will only be necessary as an independent shape until UCO 2.0.0."@en ;
@@ -9059,7 +9069,7 @@ observable:WindowsThread
9059
9069
;
9060
9070
rdfs:subClassOf observable:ProcessThread ;
9061
9071
rdfs:label "WindowsThread"@en ;
9062
-
rdfs:comment "A Windows thread is a single thread of execution within a Windows process."@en ;
9072
+
rdfs:comment "A Windows thread is a Process Thread within a Windows process."@en ;
0 commit comments