Skip to content
25 changes: 18 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ all: \

# The two CASE-Utility... files are to trigger rebuilds based on command-line interface changes or version increments.
.venv.done.log: \
.git_submodule_init.done.log \
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py \
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg \
dependencies/UCO/requirements.txt
Expand Down Expand Up @@ -103,14 +102,26 @@ clean:
@rm -rf \
venv

# This recipe maintains timestamp order.
# The target file creation is handled by recursive initialization done
# in the recipe for .git_submodule_init.done.log.
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py: \
.git_submodule_init.done.log
$(MAKE) \
--directory dependencies/UCO \
dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py
test -r $@
touch -c $@

# This recipe maintains timestamp order.
# The target file creation is handled by recursive initialization done
# in the recipe for .git_submodule_init.done.log.
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg: \
.git_submodule_init.done.log
$(MAKE) \
--directory dependencies/UCO \
dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg
test -r $@
touch -c $@

# This recipe maintains timestamp order.
# The target file creation is handled by initialization done in the
# recipe for .git_submodule_init.done.log.
dependencies/UCO/requirements.txt: \
.git_submodule_init.done.log
test -r $@
touch -c $@
2 changes: 2 additions & 0 deletions ontology/investigation/investigation.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ investigation:authorizationIdentifier

investigation:authorizationType
a owl:DatatypeProperty ;
rdfs:subPropertyOf uco-core:informalType ;
rdfs:label "authorizationType"@en ;
rdfs:comment "A label categorizing a type of authorization (e.g. warrant)"@en ;
rdfs:range xsd:string ;
Expand All @@ -288,6 +289,7 @@ investigation:focus

investigation:investigationForm
a owl:DatatypeProperty ;
rdfs:subPropertyOf uco-core:informalType ;
rdfs:label "investigationForm"@en ;
rdfs:comment "A label categorizing a type of investigation (case, incident, suspicious-activity, etc.)"@en ;
rdfs:range [
Expand Down