-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 583: Overhaul Software, Configuration, and Tool #589
base: develop-2.0.0
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="public"> | ||
<uri id="User Entered Import Resolution" uri="../../../dependencies/collections-ontology/collections.owl" name="http://purl.org/co"/> | ||
<uri id="User Entered Import Resolution" uri="../../../dependencies/error/docs/current/error.ttl" name="http://purl.org/spar/error"/> | ||
<uri id="User Entered Import Resolution" uri="../../co/co.ttl" name="https://ontology.unifiedcyberontology.org/co/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../action/action.ttl" name="https://ontology.unifiedcyberontology.org/uco/action/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../configuration/configuration.ttl" name="https://ontology.unifiedcyberontology.org/uco/configuration/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../core/core.ttl" name="https://ontology.unifiedcyberontology.org/uco/core/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../environment/environment.ttl" name="https://ontology.unifiedcyberontology.org/uco/environment/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../identity/identity.ttl" name="https://ontology.unifiedcyberontology.org/uco/identity/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../infrastructure/infrastructure.ttl" name="https://ontology.unifiedcyberontology.org/uco/infrastructure/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../location/location.ttl" name="https://ontology.unifiedcyberontology.org/uco/location/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../observable/observable.ttl" name="https://ontology.unifiedcyberontology.org/uco/observable/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../pattern/pattern.ttl" name="https://ontology.unifiedcyberontology.org/uco/pattern/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../types/types.ttl" name="https://ontology.unifiedcyberontology.org/uco/types/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="../vocabulary/vocabulary.ttl" name="https://ontology.unifiedcyberontology.org/uco/vocabulary/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="deployment.ttl" name="https://ontology.unifiedcyberontology.org/uco/deployment"/> | ||
</catalog> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# imports: https://ontology.unifiedcyberontology.org/uco/observable/1.3.0 | ||
|
||
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> . | ||
@prefix deployment: <https://ontology.unifiedcyberontology.org/uco/deployment/> . | ||
@prefix observable: <https://ontology.unifiedcyberontology.org/uco/observable/> . | ||
@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 sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
<https://ontology.unifiedcyberontology.org/uco/deployment> | ||
a owl:Ontology ; | ||
rdfs:label "uco-deployment"@en ; | ||
rdfs:comment "TODO"@en ; | ||
owl:imports observable:1.3.0 ; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I set the Deployment ontology to import the Observable ontology because of the dependence in Why is deployment getting an entire namespace, instead of being in the Observable namespace? Why is |
||
owl:versionIRI deployment:1.3.0 ; | ||
. | ||
|
||
deployment:ArtifactDeployment | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf deployment:Deployment ; | ||
. | ||
|
||
deployment:Deployment | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf core:UcoObject ; | ||
sh:property | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note: I set the three properties |
||
[ | ||
sh:class core:UcoObject ; | ||
sh:nodeKind sh:IRI ; | ||
sh:path deployment:deploymentContext ; | ||
] , | ||
[ | ||
sh:class observable:Deploy ; | ||
sh:maxCount "1"^^xsd:integer ; | ||
sh:nodeKind sh:IRI ; | ||
sh:path deployment:deploymentAction ; | ||
] , | ||
[ | ||
sh:class observable:ObservableObject ; | ||
sh:nodeKind sh:IRI ; | ||
sh:path deployment:deploymentObject ; | ||
ajnelson-nist marked this conversation as resolved.
Show resolved
Hide resolved
|
||
] | ||
; | ||
. | ||
|
||
deployment:SoftwareDeployment | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf deployment:Deployment ; | ||
. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="public"> | ||
<uri id="User Entered Import Resolution" uri="../core/core.ttl" name="https://ontology.unifiedcyberontology.org/uco/core/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="environment.ttl" name="https://ontology.unifiedcyberontology.org/uco/environment"/> | ||
</catalog> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# imports: https://ontology.unifiedcyberontology.org/uco/core/1.3.0 | ||
|
||
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> . | ||
@prefix environment: <https://ontology.unifiedcyberontology.org/uco/environment/> . | ||
@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 sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
<https://ontology.unifiedcyberontology.org/uco/environment> | ||
a owl:Ontology ; | ||
rdfs:label "uco-environment"@en ; | ||
rdfs:comment "TODO"@en ; | ||
owl:imports core:1.3.0 ; | ||
owl:versionIRI environment:1.3.0 ; | ||
. | ||
|
||
environment:Environment | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf core:UcoObject ; | ||
sh:property [ | ||
sh:class core:UcoObject ; | ||
sh:path core:hasCharacterization ; | ||
] ; | ||
. | ||
|
||
environment:SoftwareEnvironment | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf environment:Environment ; | ||
. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="public"> | ||
<uri id="User Entered Import Resolution" uri="../core/core.ttl" name="https://ontology.unifiedcyberontology.org/uco/core/1.3.0"/> | ||
<uri id="User Entered Import Resolution" uri="infrastructure.ttl" name="https://ontology.unifiedcyberontology.org/uco/infrastructure"/> | ||
</catalog> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# imports: https://ontology.unifiedcyberontology.org/uco/core/1.3.0 | ||
|
||
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> . | ||
@prefix infrastructure: <https://ontology.unifiedcyberontology.org/uco/infrastructure/> . | ||
@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 sh: <http://www.w3.org/ns/shacl#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
<https://ontology.unifiedcyberontology.org/uco/infrastructure> | ||
a owl:Ontology ; | ||
rdfs:label "uco-infrastructure"@en ; | ||
rdfs:comment "TODO"@en ; | ||
owl:imports core:1.3.0 ; | ||
owl:versionIRI infrastructure:1.3.0 ; | ||
. | ||
|
||
infrastructure:CyberInfrastructure | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf infrastructure:Infrastructure ; | ||
. | ||
|
||
infrastructure:Infrastructure | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf core:UcoObject ; | ||
. | ||
|
||
infrastructure:PhysicalInfrastructure | ||
a | ||
owl:Class , | ||
sh:NodeShape | ||
; | ||
rdfs:subClassOf infrastructure:Infrastructure ; | ||
. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This property had no accompanying namespace suggestion. Should this go into
core:
? I'm guessing so for now, because of the appearances in the Environment and Tool namespaces.