diff --git a/.gitignore b/.gitignore index 3ab2068c8..e6e382cef 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ src/ontology/cl-simple.* src/ontology/cl.json src/ontology/cl.obo src/ontology/cl.owl +src/ontology/cl.db src/ontology/dosdp-tools.log src/ontology/ed_definitions_merged.owl src/ontology/imports/*_terms_combined.txt @@ -46,6 +47,7 @@ src/patterns/pattern_owl_seed.txt src/ontology/ontologyterms.txt src/ontology/simple_seed.txt src/ontology/reports/* +!src/ontology/reports/obo-profile.tsv src/ontology/cl-hipc.owl site/ src/ontology/cl-check.obo diff --git a/docs/odk-workflows/RepoManagement.md b/docs/odk-workflows/RepoManagement.md index ef4b68ab2..d32627ab0 100644 --- a/docs/odk-workflows/RepoManagement.md +++ b/docs/odk-workflows/RepoManagement.md @@ -2,7 +2,7 @@ ## Updating your ODK repository -Your ODK repositories configuration is managed in `src/ontology/cl-odk.yaml`. Once you have made your changes, you can run the following to apply your changes to the repository: +Your ODK repositories configuration is managed in `src/ontology/cl-odk.yaml`. The [ODK Project Configuration Schema](https://github.com/INCATools/ontology-development-kit/blob/master/docs/project-schema.md) defines all possible parameters that can be used in this config YAML. Once you have made your changes, you can run the following to apply your changes to the repository: ``` diff --git a/src/ontology/Makefile b/src/ontology/Makefile index 39e1ff4ac..3c4f544e2 100644 --- a/src/ontology/Makefile +++ b/src/ontology/Makefile @@ -1,7 +1,7 @@ # ---------------------------------------- # Makefile for cl # Generated using ontology-development-kit -# ODK Version: v1.4.3 +# ODK Version: v1.5 # ---------------------------------------- # IMPORTANT: DO NOT EDIT THIS FILE. To override default make goals, use cl.Makefile instead @@ -9,6 +9,9 @@ # ---------------------------------------- # More information: https://github.com/INCATools/ontology-development-kit/ +# Fingerprint of the configuration file when this Makefile was last generated +CONFIG_HASH= 34b786df5efb6fe2e44e1bc2c6f078ac6aec7b8ba7d6c3ba403506ef0b231484 + # ---------------------------------------- # Standard Constants @@ -43,7 +46,7 @@ REPORT_PROFILE_OPTS = OBO_FORMAT_OPTIONS = SPARQL_VALIDATION_CHECKS = equivalent-classes owldef-self-reference nolabels pmid-not-dbxref obsolete-replaced_by obsolete-alt-id orcid-contributor illegal-annotation-property label-synonym-polysemy SPARQL_EXPORTS = basic-report -ODK_VERSION_MAKEFILE = v1.4.3 +ODK_VERSION_MAKEFILE = v1.5 TODAY ?= $(shell date +%Y-%m-%d) OBODATE ?= $(shell date +'%d:%m:%Y %H:%M') @@ -63,6 +66,11 @@ FORMATS = $(sort owl obo json owl) FORMATS_INCL_TSV = $(sort $(FORMATS) tsv) RELEASE_ARTEFACTS = $(sort $(ONT)-base $(ONT)-full $(ONT)-simple $(ONT)-basic $(ONT)-non-classified cl-plus ) +ifeq ($(ODK_DEBUG),yes) +ODK_DEBUG_FILE = $(TMPDIR)/debug.log +SHELL = $(SCRIPTSDIR)/run-command.sh +endif + # ---------------------------------------- # Top-level targets # ---------------------------------------- @@ -73,12 +81,16 @@ RELEASE_ARTEFACTS = $(sort $(ONT)-base $(ONT)-full $(ONT)-simple $(ONT)-basic $( all: all_odk .PHONY: all_odk -all_odk: odkversion test all_assets +all_odk: odkversion config_check test all_assets .PHONY: test test: odkversion dosdp_validation reason_test sparql_test robot_reports $(REPORTDIR)/validate_profile_owl2dl_$(ONT).owl.txt echo "Finished running all tests successfully." +.PHONY: test +test_fast: + $(MAKE_FAST) test + .PHONY: release_diff release_diff: $(REPORTDIR)/release-diff.md @@ -92,10 +104,50 @@ odkversion: echo "ODK Makefile version: $(ODK_VERSION_MAKEFILE) (this is the version of the ODK with which this Makefile was generated, \ not the version of the ODK you are running)" &&\ echo "ROBOT version (ODK): " && $(ROBOT) --version +.PHONY: config_check +config_check: + @if [ "$$(sha256sum $(ONT)-odk.yaml | cut -c1-64)" = "$(CONFIG_HASH)" ]; then \ + echo "Repository is up-to-date." ; else \ + echo "Your ODK configuration has changed since this Makefile was generated. You may need to run 'make update_repo'." ; fi + $(TMPDIR) $(REPORTDIR) $(MIRRORDIR) $(IMPORTDIR) $(COMPONENTSDIR) $(SUBSETDIR): mkdir -p $@ +# ---------------------------------------- +# ODK-managed ROBOT plugins +# ---------------------------------------- + +# Make sure ROBOT knows where to find plugins +export ROBOT_PLUGINS_DIRECTORY=$(TMPDIR)/plugins + +# Override this rule in cl.Makefile to install custom plugins +.PHONY: custom_robot_plugins +custom_robot_plugins: + + +.PHONY: extra_robot_plugins +extra_robot_plugins: + + +# Install all ROBOT plugins to the runtime plugins directory +.PHONY: all_robot_plugins +all_robot_plugins: $(foreach plugin,$(notdir $(wildcard /tools/robot-plugins/*.jar)),$(ROBOT_PLUGINS_DIRECTORY)/$(plugin)) \ + $(foreach plugin,$(notdir $(wildcard ../../plugins/*.jar)),$(ROBOT_PLUGINS_DIRECTORY)/$(plugin)) \ + custom_robot_plugins extra_robot_plugins \ + +# Default rule to install plugins +$(ROBOT_PLUGINS_DIRECTORY)/%.jar: + @mkdir -p $(ROBOT_PLUGINS_DIRECTORY) + @if [ -f ../../plugins/$*.jar ]; then \ + ln ../../plugins/$*.jar $@ ; \ + elif [ -f /tools/robot-plugins/$*.jar ]; then \ + cp /tools/robot-plugins/$*.jar $@ ; \ + fi + +# Specific rules for supplementary plugins defined in configuration + + # ---------------------------------------- # Release assets # ---------------------------------------- @@ -185,10 +237,10 @@ validate_profile_%: $(REPORTDIR)/validate_profile_owl2dl_%.txt SPARQL_VALIDATION_QUERIES = $(foreach V,$(SPARQL_VALIDATION_CHECKS),$(SPARQLDIR)/$(V)-violation.sparql) -sparql_test: $(EDIT_PREPROCESSED) catalog-v001.xml | $(REPORTDIR) +sparql_test: $(EDIT_PREPROCESSED) | $(REPORTDIR) ifneq ($(SPARQL_VALIDATION_QUERIES),) - $(ROBOT) verify --catalog catalog-v001.xml -i $(EDIT_PREPROCESSED) --queries $(SPARQL_VALIDATION_QUERIES) -O $(REPORTDIR) + $(ROBOT) verify -i $(EDIT_PREPROCESSED) --queries $(SPARQL_VALIDATION_QUERIES) -O $(REPORTDIR) endif # ---------------------------------------- @@ -201,6 +253,29 @@ $(REPORTDIR)/$(SRC)-obo-report.tsv: $(SRCMERGED) | $(REPORTDIR) $(REPORTDIR)/%-obo-report.tsv: % | $(REPORTDIR) $(ROBOT) report -i $< $(REPORT_LABEL) $(REPORT_PROFILE_OPTS) --fail-on $(REPORT_FAIL_ON) --print 5 -o $@ + +# ---------------------------------------- +# OAK Validation +# ---------------------------------------- + +$(ONT)-simple.db: $(ONT)-simple.owl + semsql make $@ + rm $(ONT)-simple-relation-graph.tsv.gz + + +$(TMPDIR)/obo-profile.yaml: + cp obo-profile.yaml $@ + + +$(REPORTDIR)/obo-profile.tsv: $(ONT)-simple.db $(TMPDIR)/obo-profile.yaml + runoak validate-multiple $< --schema $(TMPDIR)/obo-profile.yaml --output $@ --cutoff 5000 + awk 'NR==1 {print} NR!=1 && $$2~/CL:/' $@ > $@.tmp.tsv && mv $@.tmp.tsv $@ + + +.PHONY: oak_validation +oak_validation: + $(MAKE_FAST) $(REPORTDIR)/obo-profile.tsv + # ---------------------------------------- # Release assets # ---------------------------------------- @@ -218,7 +293,7 @@ RELEASE_ASSETS = \ $(SUBSET_FILES) .PHONY: all_assets -all_assets: $(ASSETS) +all_assets: $(ASSETS) check_rdfxml_assets .PHONY: show_assets show_assets: @@ -226,7 +301,7 @@ show_assets: du -sh $(ASSETS) check_rdfxml_%: % - @check-rdfxml $< + @check-rdfxml $< .PHONY: check_rdfxml_assets check_rdfxml_assets: $(foreach product,$(MAIN_PRODUCTS),check_rdfxml_$(product).owl) @@ -399,9 +474,9 @@ recreate-%: no-mirror-recreate-%: $(MAKE) COMP=true IMP=false IMP_LARGE=false MIR=false PAT=true $(COMPONENTSDIR)/$*.owl -B -$(COMPONENTSDIR)/%: | $(COMPONENTSDIR) - touch $@ -.PRECIOUS: $(COMPONENTSDIR)/% +$(COMPONENTSDIR)/%.owl: | $(COMPONENTSDIR) + test -f $@ || touch $@ +.PRECIOUS: $(COMPONENTSDIR)/%.owl @@ -453,77 +528,85 @@ IMP=true # Global parameter to bypass import generation MIR=true # Global parameter to bypass mirror generation IMP_LARGE=true # Global parameter to bypass handling of large imports +ifeq ($(strip $(MIR)),true) ## ONTOLOGY: pr .PHONY: mirror-pr .PRECIOUS: $(MIRRORDIR)/pr.owl +ifeq ($(strip $(IMP_LARGE)),true) mirror-pr: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ] && [ $(IMP_LARGE) = true ]; then $(ROBOT) convert -I https://raw.githubusercontent.com/obophenotype/pro_obo_slim/master/pr_slim.owl -o $@.tmp.owl && \ - $(ROBOT) remove -i $@.tmp.owl --base-iri $(URIBASE)/PR --axioms external --preserve-structure false --trim false -o $@.tmp.owl &&\ - mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + $(ROBOT) remove -I https://raw.githubusercontent.com/obophenotype/pro_obo_slim/master/pr_slim.owl --base-iri $(OBOBASE)/PR --axioms external --preserve-structure false --trim false -o $(TMPDIR)/$@.owl +else +mirror-pr: + @echo "Not refreshing pr because refreshing large imports is disabled (IMP_LARGE=$(IMP_LARGE))." +endif ## ONTOLOGY: go .PHONY: mirror-go .PRECIOUS: $(MIRRORDIR)/go.owl mirror-go: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(OBOBASE)/go/go-base.owl --create-dirs -o $(MIRRORDIR)/go.owl --retry 4 --max-time 200 &&\ - $(ROBOT) convert -i $(MIRRORDIR)/go.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + curl -L $(OBOBASE)/go/go-base.owl --create-dirs -o $(TMPDIR)/go-download.owl --retry 4 --max-time 200 && \ + $(ROBOT) convert -i $(TMPDIR)/go-download.owl -o $(TMPDIR)/$@.owl ## ONTOLOGY: uberon .PHONY: mirror-uberon .PRECIOUS: $(MIRRORDIR)/uberon.owl mirror-uberon: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(OBOBASE)/uberon/uberon-base.owl --create-dirs -o $(MIRRORDIR)/uberon.owl --retry 4 --max-time 200 &&\ - $(ROBOT) convert -i $(MIRRORDIR)/uberon.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + curl -L $(OBOBASE)/uberon/uberon-base.owl --create-dirs -o $(TMPDIR)/uberon-download.owl --retry 4 --max-time 200 && \ + $(ROBOT) convert -i $(TMPDIR)/uberon-download.owl -o $(TMPDIR)/$@.owl ## ONTOLOGY: ro .PHONY: mirror-ro .PRECIOUS: $(MIRRORDIR)/ro.owl mirror-ro: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(OBOBASE)/ro/ro-base.owl --create-dirs -o $(MIRRORDIR)/ro.owl --retry 4 --max-time 200 &&\ - $(ROBOT) convert -i $(MIRRORDIR)/ro.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + curl -L $(OBOBASE)/ro/ro-base.owl --create-dirs -o $(TMPDIR)/ro-download.owl --retry 4 --max-time 200 && \ + $(ROBOT) convert -i $(TMPDIR)/ro-download.owl -o $(TMPDIR)/$@.owl ## ONTOLOGY: pato .PHONY: mirror-pato .PRECIOUS: $(MIRRORDIR)/pato.owl mirror-pato: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(OBOBASE)/pato/pato-base.owl --create-dirs -o $(MIRRORDIR)/pato.owl --retry 4 --max-time 200 &&\ - $(ROBOT) convert -i $(MIRRORDIR)/pato.owl -o $@.tmp.owl && mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + curl -L $(OBOBASE)/pato/pato-base.owl --create-dirs -o $(TMPDIR)/pato-download.owl --retry 4 --max-time 200 && \ + $(ROBOT) convert -i $(TMPDIR)/pato-download.owl -o $(TMPDIR)/$@.owl ## ONTOLOGY: ncbitaxon .PHONY: mirror-ncbitaxon .PRECIOUS: $(MIRRORDIR)/ncbitaxon.owl mirror-ncbitaxon: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then $(ROBOT) convert -I http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim.owl -o $@.tmp.owl &&\ - mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + $(ROBOT) convert -I http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim.owl -o $(TMPDIR)/$@.owl ## ONTOLOGY: omo .PHONY: mirror-omo .PRECIOUS: $(MIRRORDIR)/omo.owl mirror-omo: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(OBOBASE)/omo.owl --create-dirs -o $(MIRRORDIR)/omo.owl --retry 4 --max-time 200 &&\ - $(ROBOT) convert -i $(MIRRORDIR)/omo.owl -o $@.tmp.owl &&\ - mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + curl -L $(OBOBASE)/omo.owl --create-dirs -o $(TMPDIR)/omo-download.owl --retry 4 --max-time 200 && \ + $(ROBOT) convert -i $(TMPDIR)/omo-download.owl -o $(TMPDIR)/$@.owl ALL_MIRRORS = $(patsubst %, $(MIRRORDIR)/%.owl, $(IMPORTS)) MERGE_MIRRORS = true +ifeq ($(strip $(MERGE_MIRRORS)),true) $(MIRRORDIR)/merged.owl: $(ALL_MIRRORS) - if [ $(IMP) = true ] && [ $(MERGE_MIRRORS) = true ]; then $(ROBOT) merge $(patsubst %, -i %, $^) -o $@; fi + $(ROBOT) merge $(patsubst %, -i %, $^) remove --axioms equivalent --preserve-structure false -o $@ .PRECIOUS: $(MIRRORDIR)/merged.owl +endif $(MIRRORDIR)/%.owl: mirror-% | $(MIRRORDIR) - if [ $(IMP) = true ] && [ $(MIR) = true ] && [ -f $(TMPDIR)/mirror-$*.owl ]; then if cmp -s $(TMPDIR)/mirror-$*.owl $@ ; then echo "Mirror identical, ignoring."; else echo "Mirrors different, updating." &&\ + if [ -f $(TMPDIR)/mirror-$*.owl ]; then if cmp -s $(TMPDIR)/mirror-$*.owl $@ ; then echo "Mirror identical, ignoring."; else echo "Mirrors different, updating." &&\ cp $(TMPDIR)/mirror-$*.owl $@; fi; fi +else # MIR=false +$(MIRRORDIR)/%.owl: + @echo "Not refreshing $@ because the mirrorring pipeline is disabled (MIR=$(MIR))." +endif @@ -621,7 +704,7 @@ DOSDP_TERM_FILES_DEFAULT = $(patsubst %.tsv, $(PATTERNDIR)/data/default/%.txt, $ DOSDP_PATTERN_NAMES_DEFAULT = $(strip $(patsubst %.tsv,%, $(notdir $(wildcard $(PATTERNDIR)/data/default/*.tsv)))) $(DOSDP_OWL_FILES_DEFAULT): $(EDIT_PREPROCESSED) $(DOSDP_TSV_FILES_DEFAULT) $(ALL_PATTERN_FILES) - if [ $(PAT) = true ] && [ "${DOSDP_PATTERN_NAMES_DEFAULT}" ]; then $(DOSDPT) generate --catalog=catalog-v001.xml \ + if [ $(PAT) = true ] && [ "${DOSDP_PATTERN_NAMES_DEFAULT}" ]; then $(DOSDPT) generate --catalog=$(CATALOG) \ --infile=$(PATTERNDIR)/data/default/ --template=$(PATTERNDIR)/dosdp-patterns --batch-patterns="$(DOSDP_PATTERN_NAMES_DEFAULT)" \ --ontology=$< --obo-prefixes=true --outfile=$(PATTERNDIR)/data/default; fi @@ -635,7 +718,7 @@ DOSDP_TSV_FILES_CLUSTERING = $(wildcard $(PATTERNDIR)/data/clustering/*.tsv) DOSDP_PATTERN_NAMES_CLUSTERING = $(strip $(patsubst %.tsv,%, $(notdir $(wildcard $(PATTERNDIR)/data/clustering/*.tsv)))) $(DOSDP_OWL_FILES_CLUSTERING): $(EDIT_PREPROCESSED) $(DOSDP_TSV_FILES_CLUSTERING) $(ALL_PATTERN_FILES) - if [ $(PAT) = true ] && [ "${DOSDP_PATTERN_NAMES_CLUSTERING}" ]; then $(DOSDPT) generate --catalog=catalog-v001.xml \ + if [ $(PAT) = true ] && [ "${DOSDP_PATTERN_NAMES_CLUSTERING}" ]; then $(DOSDPT) generate --catalog=$(CATALOG) \ --infile=$(PATTERNDIR)/data/clustering --template=$(PATTERNDIR)/dosdp-patterns/ --batch-patterns="$(DOSDP_PATTERN_NAMES_CLUSTERING)" \ --ontology=$< --obo-prefixes=true --outfile=$(PATTERNDIR)/data/clustering; fi # Generate template file seeds @@ -739,9 +822,13 @@ ROBOT_RELEASE_IMPORT_MODE=$(ROBOT) remove --input $< --select imports --trim fal # ROBOT pipeline that removes imports, then merges components. This is for release artefacts that start from "base" ROBOT_RELEASE_IMPORT_MODE_BASE=$(ROBOT) remove --input $< --select imports --trim false merge $(patsubst %, -i %, $(OTHER_SRC)) -# base: All the axioms as they are editted by the editors, excluding reasoning -$(ONT)-base.owl: $(EDIT_PREPROCESSED) $(OTHER_SRC) - $(ROBOT_RELEASE_IMPORT_MODE_BASE) \ +# base: A version of the ontology that does not include any externally imported axioms. +$(ONT)-base.owl: $(EDIT_PREPROCESSED) $(OTHER_SRC) $(IMPORT_FILES) + $(ROBOT_RELEASE_IMPORT_MODE) \ + reason --reasoner ELK --equivalent-classes-allowed asserted-only --exclude-tautologies structural \ + relax \ + reduce -r ELK \ + remove --base-iri http://purl.obolibrary.org/obo/CP_ --base-iri http://purl.obolibrary.org/obo/CL_ --base-iri http://purl.obolibrary.org/obo/cl# --axioms external --preserve-structure false --trim false \ $(SHARED_ROBOT_COMMANDS) \ annotate --link-annotation http://purl.org/dc/elements/1.1/type http://purl.obolibrary.org/obo/IAO_8000001 \ --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ @@ -869,6 +956,7 @@ Core commands: * prepare_release_fast: Run the entire release pipeline without refreshing imports, recreating components or recompiling patterns. * update_repo: Update the ODK repository setup using the config file cl-odk.yaml * test: Running all validation tests +* test_fast: Runs the test suite, but without updating imports or components * odkversion: Show the current version of the ODK Makefile and ROBOT. * clean: Delete all temporary files * help: Print ODK Usage information @@ -895,7 +983,7 @@ DOSDP templates Editor utilities: * validate_idranges: Make sure your ID ranges file is formatted correctly -* normalize_src: Load and safe your cl-edit file after you to make sure its serialised correctly +* normalize_src: Load and save your cl-edit file after you to make sure its serialised correctly * explain_unsat: If you have unsatisfiable classes, this command will create a markdown file (tmp/explain_unsat.md) which will explain all your unsatisfiable classes * validate-all-tsv: Check all your tsv files for possible problems in syntax. Use ALL_TSV_FILES variable to list files * validate-tsv: Check a tsv file for syntactic problems with tsvalid. Use TSV variable to pass filepath, e.g. make TSV=../my.tsv validate-tsv. diff --git a/src/ontology/cl-odk.yaml b/src/ontology/cl-odk.yaml index 17c52bf48..42cea7ba8 100644 --- a/src/ontology/cl-odk.yaml +++ b/src/ontology/cl-odk.yaml @@ -118,4 +118,7 @@ components: use_template: True templates: - cellxgene_subset.tsv - +oak_validation: + profiles: + - id: obo-profile + filename: obo-profile.yaml diff --git a/src/ontology/cl.Makefile b/src/ontology/cl.Makefile index 8544b1521..a85a00599 100644 --- a/src/ontology/cl.Makefile +++ b/src/ontology/cl.Makefile @@ -307,3 +307,4 @@ $(REPORTDIR)/general_cell_types_upper_slim_report.csv: $(TEMPLATEDIR)/general_ce $(REPORTDIR)/kidney_upper_slim_report.csv: $(TEMPLATEDIR)/kidney_upper_slim.csv $(eval TERM_ID := $(TERM_kidney)) $(COVERAGECMD) + diff --git a/src/ontology/obo-profile.yaml b/src/ontology/obo-profile.yaml new file mode 100644 index 000000000..50749f0e2 --- /dev/null +++ b/src/ontology/obo-profile.yaml @@ -0,0 +1,1328 @@ +id: http://purl.obolibrary.org/obo/omo/schema +name: Ontology-Metadata +title: Ontology Metadata Ontology Schema +description: >- + Schema for ontology metadata +license: https://creativecommons.org/publicdomain/zero/1.0/ +version: 0.0.1 + +default_curi_maps: + - obo_context + - semweb_context + +prefixes: + omoschema: http://purl.obolibrary.org/obo/omo/schema/ + obo: http://purl.obolibrary.org/obo/ + RO: http://purl.obolibrary.org/obo/RO_ + OMO: http://purl.obolibrary.org/obo/OMO_ + IAO: http://purl.obolibrary.org/obo/IAO_ + OBI: http://purl.obolibrary.org/obo/OBI_ + NCIT: http://purl.obolibrary.org/obo/NCIT_ + NCBITaxon: http://purl.obolibrary.org/obo/NCBITaxon_ + oio: http://www.geneontology.org/formats/oboInOwl# + dcterms: http://purl.org/dc/terms/ + linkml: https://w3id.org/linkml/ + skos: http://www.w3.org/2004/02/skos/core# + biolink: https://w3id.org/biolink/vocab/ + sdo: http://schema.org/ + owl: http://www.w3.org/2002/07/owl# + rdfs: http://www.w3.org/2000/01/rdf-schema# + pav: http://purl.org/pav/ + prov: http://www.w3.org/ns/prov-o# + orcid: https://orcid.org/ + +default_prefix: omoschema +default_range: string + +settings: + orcid_regex: "orcid:\\d{4}-\\d{4}-\\d{4}-\\d{3}[0-9X]" + +imports: + - linkml:types + +subsets: + ## we take GO and OBI as two canonical "styles" of ontologies. + ## these can be thought of similarly to ROBOT profiles + + go required profile: + go recommended profile: + go permitted profile: + obi required profile: + obi permitted profile: + allotrope required profile: + see_also: + - https://gitlab.com/allotrope-open-source/allotrope-devops/-/wikis/uploads/Allotrope_Framework_Term_Curation_Style_Guide.pdf + allotrope permitted profile: + see_also: + - https://gitlab.com/allotrope-open-source/allotrope-devops/-/wikis/uploads/Allotrope_Framework_Term_Curation_Style_Guide.pdf + +classes: + + #GOStyleTermProfile: + # slots: + + Any: + class_uri: linkml:Any + + AnnotationPropertyMixin: + mixin: true + description: Groups all annotation property bundles + + HasMinimalMetadata: + mixin: true + is_a: AnnotationPropertyMixin + description: Absolute minimum metadata model + slots: + - label + - definition + + HasSynonyms: + mixin: true + is_a: AnnotationPropertyMixin + description: >- + a mixin for a class whose members can have synonyms + comments: + - the GO-style synonym model has four distinct scopes, with additional types as annotation axioms + - the OBI synonym model is to use alternative_term, or potentially a subproperty + slots: + # GO-style + - has_exact_synonym + - has_narrow_synonym + - has_broad_synonym + - has_related_synonym + # OBI-style + - alternative_term + - ISA_alternative_term + - IEDB_alternative_term + - editor_preferred_term + - OBO_foundry_unique_label + + + HasMappings: + mixin: true + is_a: AnnotationPropertyMixin + slots: + # skos + - broadMatch + - closeMatch + - exactMatch + - narrowMatch + # oio + - database_cross_reference + + HasProvenance: + mixin: true + is_a: AnnotationPropertyMixin + slots: + # oio: proposed to be deprecated + - created_by + - creation_date + # dct / rdfs + - contributor + - creator + - created + - date + - isDefinedBy + # iao + - editor_note + - term_editor + - definition_source + - ontology_term_requester + - imported_from + - term_tracker_item + + HasLifeCycle: + mixin: true + is_a: AnnotationPropertyMixin + slots: + - deprecated + - has_obsolescence_reason + - term_replaced_by + - consider + - has_alternative_id + - excluded_from_QC_check + - excluded_subClassOf + - excluded_synonym + - should_conform_to + rules: + - description: if a term is deprecated it should have either consider or replaced by + preconditions: + slot_conditions: + deprecated: + equals_expression: "true" + postconditions: + any_of: + - slot_conditions: + term_replaced_by: + required: true + - slot_conditions: + consider: + required: true + - description: if a term is not deprecated it should have neither consider nor replaced by nor label start with obsolete + preconditions: + none_of: + - slot_conditions: + deprecated: + equals_expression: "true" + postconditions: + none_of: + - slot_conditions: + term_replaced_by: + required: true + - slot_conditions: + consider: + required: true + label: + pattern: "^obsolete" + - description: if a term is deprecated its label should start with the string obsolete + preconditions: + slot_conditions: + deprecated: + equals_expression: "true" + postconditions: + slot_conditions: + label: + pattern: "^obsolete " + + HasCategory: + mixin: true + is_a: AnnotationPropertyMixin + slots: + # categorization + - has_obo_namespace + - category + - in_subset + - conformsTo + + HasUserInformation: + mixin: true + is_a: AnnotationPropertyMixin + slots: + # informative for user + - comment + - seeAlso + - image + - example_of_usage + - curator_note + - has_curation_status + - depicted_by + - depiction + - page + + Thing: + abstract: true + class_uri: owl:Thing + slots: + - type + + NamedObject: + is_a: Thing + description: Anything with an IRI + aliases: + - named entity + - identified object + - IRI + slots: + - id + + Ontology: + is_a: NamedObject + class_uri: owl:Ontology + description: An OWL ontology + slots: + - title + - has_ontology_root_term + - license + - source + - versionIRI + - versionInfo + - comment + - creator + - created + - imports + slot_usage: + title: + required: true + license: + required: true + versionIRI: + required: true + versionInfo: + required: true + + Term: + description: A NamedThing that includes classes, properties, but not ontologies + aliases: + - term + is_a: NamedObject + mixins: + - HasSynonyms + - HasLifeCycle + - HasProvenance + - HasMappings + - HasCategory +# - HasHistory + - HasUserInformation + - HasMinimalMetadata + abstract: true + + + Class: + aliases: + - term + - concept + is_a: Term + mixins: + - ClassExpression + class_uri: owl:Class + close_mappings: + - skos:Concept + slots: + # logic shortcuts + - never_in_taxon + - disconnected_from + # taxon classes only + - has_rank + slot_usage: + label: + required: true + definition: + recommended: true + broadMatch: + range: Class + exactMatch: + range: Class + narrowMatch: + range: Class + closeMatch: + range: Class + subClassOf: + range: Class + + Property: + abstract: true + class_uri: rdf:Property + is_a: Term + slots: + - domain + - range + - is_class_level + - is_metadata_tag + slot_usage: + label: + recommended: true + definition: + recommended: true + broadMatch: + range: Property + exactMatch: + range: Property + narrowMatch: + range: Property + closeMatch: + range: Property + subClassOf: + range: Property + + AnnotationProperty: + description: A property used in non-logical axioms + is_a: Property + class_uri: owl:AnnotationProperty + slots: + - shorthand + + ObjectProperty: + description: A property that connects two objects in logical axioms + is_a: Property + class_uri: owl:ObjectProperty + mixins: + - PropertyExpression + slots: + - temporal_interpretation + - is_cyclic + - is_transitive + - shorthand + - equivalentProperty + - inverseOf + - propertyChainAxiom + + TransitiveProperty: + description: An ObjectProperty with the property of transitivity + is_a: ObjectProperty + + NamedIndividual: + description: An instance that has a IRI + is_a: Term + class_uri: owl:NamedIndividual + #slots: + #- type + + HomoSapiens: + is_a: NamedIndividual + description: An individual human being + class_uri: NCBITaxon:9606 + id_prefixes: + - orcid + slot_usage: + id: + pattern: "^orcid:.*" + + Agent: + is_a: NamedIndividual + class_uri: prov:Agent + id_prefixes: + - orcid + slot_usage: + id: + pattern: "^orcid:.*" + + Image: + is_a: NamedIndividual + class_uri: IAO:0000101 + + Annotation: + description: A reified property-object pair + represents_relationship: true + attributes: + predicate: + relational_role: PREDICATE + #required: true + object: + relational_role: OBJECT + #required: true + + Axiom: + description: A logical or non-logical statement + class_uri: owl:Axiom + represents_relationship: true + exact_mappings: + - rdf:Statement + slots: + # owl + - annotatedProperty + - annotatedSource + - annotatedTarget + ## generic annotations + - annotations + # other + - source + - is_inferred + - notes + - url + - has_axiom_label + - is_a_defining_property_chain_axiom + - is_a_defining_property_chain_axiom_where_second_argument_is_reflexive + - created_by + - date_retrieved + - evidence + - external_ontology + - database_cross_reference + - has_exact_synonym + - has_synonym_type + - comment + - label + - seeAlso + slot_usage: + database_cross_reference: + in_subset: + - go permitted profile + description: >- + Uses to indicate the source of an axiom + exact_mappings: + - dcterms:source + + Subset: + description: A collection of terms grouped for some purpose + is_a: AnnotationProperty + class_uri: oio:Subset + + Anonymous: + abstract: true + description: Abstract root class for all anonymous (non-named; lacking an identifier) expressions + + AnonymousClassExpression: + is_a: Anonymous + + Restriction: + is_a: AnonymousClassExpression + class_uri: owl:Restriction + mixins: + - ClassExpression + mixin: true + slots: + - onProperty + - someValuesFrom + - allValuesFrom + + ## MIXINS + Expression: + mixin: true + + ClassExpression: + is_a: Expression + mixin: true + slots: + - disjointWith + - equivalentClass + - intersectionOf + - subClassOf + - cardinality + - complementOf + - oneOf + - unionOf + + PropertyExpression: + is_a: Expression + mixin: true + slots: + - disjointWith + + ObsoleteAspect: + description: Auto-classifies anything that is obsolete + mixin: true + slot_usage: + label: + pattern: "^obsolete" + classification_rules: + - slot_conditions: + deprecated: + equals_expression: "true" + + NotObsoleteAspect: + description: Auto-classifies anything that is not obsolete + mixin: true + classification_rules: + - slot_conditions: + none_of: + deprecated: + equals_expression: "true" + rules: + postconditions: + none_of: + - slot_conditions: + label: + pattern: "^obsolete" + +slots: + + # core + core_property: + abstract: true + description: abstract grouping of core properties + + id: + is_a: core_property + identifier: true + required: true + range: uriorcurie + description: this maps to the URI in RDF + + label: + is_a: core_property + slot_uri: rdfs:label + multivalued: false + range: label type + exact_mappings: + - skos:prefLabel + in_subset: + - allotrope required profile + - go required profile + - obi required profile + comments: + - SHOULD follow OBO label guidelines + - MUST be unique within an ontology + - SHOULD be unique across OBO + + annotations: + multivalued: true + range: Annotation + + definition: + is_a: core_property + slot_uri: IAO:0000115 + multivalued: false + range: narrative text + exact_mappings: + - skos:definition + in_subset: + - allotrope required profile + - go required profile + - obi required profile + comments: + - SHOULD be in Aristotelian (genus-differentia) form + + predicate: + relational_role: PREDICATE + + object: + relational_role: OBJECT + + title: + slot_uri: dcterms:title + range: narrative text + + # aliases and synonyms + match_aspect: + mixin: true + match: + abstract: true + mixins: + - match_aspect + broadMatch: + is_a: match + slot_uri: skos:broadMatch + multivalued: true + range: Thing + closeMatch: + is_a: match + slot_uri: skos:closeMatch + multivalued: true + range: Thing + exactMatch: + is_a: match + slot_uri: skos:exactMatch + multivalued: true + range: Thing + narrowMatch: + is_a: match + slot_uri: skos:narrowMatch + multivalued: true + range: Thing + database_cross_reference: + is_a: match + slot_uri: oio:hasDbXref + multivalued: true + range: CURIELiteral + + # informative for user + informative_property: + abstract: true + + comment: + is_a: informative_property + slot_uri: rdfs:comment + multivalued: true + comments: + - in obo format, a term cannot have more than one comment + category: + is_a: informative_property + slot_uri: biolink:category + + image: + is_a: informative_property + slot_uri: sdo:image + range: Thing + + example_of_usage: + is_a: informative_property + slot_uri: IAO:0000112 + multivalued: true + exact_mappings: + - skos:example + in_subset: + - allotrope permitted profile ## allotrope uses skos + changeNote: + is_a: informative_property + slot_uri: skos:changeNote + multivalued: true + in_subset: + - allotrope permitted profile ## allotrope uses skos + has_curation_status: + is_a: informative_property + slot_uri: IAO:0000114 + defaultLanguage: + is_a: informative_property + slot_uri: protege:defaultLanguage + language: + is_a: informative_property + slot_uri: dcterms:language + exact_mappings: + - dce:language + has_ontology_root_term: + is_a: informative_property + slot_uri: IAO:0000700 + multivalued: true + range: Class + #recommended: true + # patterns + conformsTo: + is_a: informative_property + slot_uri: dcterms:conformsTo + multivalued: true + range: Thing + + # licensing + license: + is_a: informative_property + slot_uri: dcterms:license + range: Thing + + # links + depicted_by: + is_a: informative_property + slot_uri: foaf:depicted_by + multivalued: true + deprecated: This annotion never existed in FOAF namespace. + deprecated_element_has_exact_replacement: depiction + range: Image + depiction: + is_a: informative_property + slot_uri: foaf:depiction + multivalued: true + range: Image + page: + is_a: informative_property + slot_uri: foaf:page + multivalued: true + + symbol: + is_a: informative_property + slot_uri: IAO:0000028 + + expand_expression_to: + is_a: informative_property + slot_uri: IAO:0000424 + + is_negative_form_of: + is_a: informative_property + slot_uri: RO:0004050 + + version_property: + abstract: true + versionIRI: + is_a: version_property + slot_uri: owl:versionIRI + range: uriorcurie + versionInfo: + is_a: version_property + slot_uri: owl:versionInfo + close_mappings: + - pav:version + + + # obsoletion and metadata + obsoletion_related_property: + abstract: true + description: Grouping class for all properties related to lifecycle + + deprecated: + is_a: obsoletion_related_property + aliases: + - is obsolete + slot_uri: owl:deprecated + domain: ObsoleteAspect + range: boolean + in_subset: + - allotrope permitted profile + - go permitted profile + - obi permitted profile + term_replaced_by: + is_a: obsoletion_related_property + slot_uri: IAO:0100001 + domain: ObsoleteAspect + range: Any ## TODO + comments: + - RULE: subject must be deprecated + exact_mappings: + - dcterms:isReplacedBy + in_subset: + - go permitted profile + - obi permitted profile + - allotrope permitted profile ## allotrope uses skos + has_obsolescence_reason: + is_a: obsoletion_related_property + slot_uri: IAO:0000231 + domain: ObsoleteAspect + comments: + - RULE: subject must be deprecated + range: NamedObject + consider: + is_a: obsoletion_related_property + slot_uri: oio:consider + domain: ObsoleteAspect + multivalued: true + comments: + - RULE: subject must be deprecated + in_subset: + - go permitted profile + range: Any ## TODO + has_alternative_id: + description: >- + Relates a live term to a deprecated ID that was merged in + deprecated: This is deprecated as it is redundant with the inverse replaced_by triple + is_a: obsoletion_related_property + slot_uri: oio:hasAlternativeId + multivalued: true + domain: NotObsoleteAspect + range: uriorcurie + comments: + - RULE: object must NOT be deprecated + in_subset: + - go permitted profile + see_also: + - https://github.com/owlcs/owlapi/issues/317 + + temporal_interpretation: + slot_uri: RO:0001900 + range: NamedIndividual + never_in_taxon: + slot_uri: RO:0002161 + multivalued: true + range: Class + present_in_taxon: + slot_uri: RO:0002175 + multivalued: true + range: Class + is_a_defining_property_chain_axiom: + slot_uri: RO:0002581 + is_a_defining_property_chain_axiom_where_second_argument_is_reflexive: + slot_uri: RO:0002582 + + # term provenance + provenance_property: + abstract: true + contributor: + is_a: provenance_property + slot_uri: dcterms:contributor + multivalued: true + range: NamedObject + close_mappings: + - prov:wasAttributedTo + pattern: "^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($" + creator: + is_a: provenance_property + slot_uri: dcterms:creator + multivalued: true + range: Agent + close_mappings: + - prov:wasAttributedTo + structured_pattern: + syntax: "{orcid_regex}" + interpolated: true + partial_match: false + created: + is_a: provenance_property + slot_uri: dcterms:created + multivalued: false + description: when the term came into being + close_mappings: + - pav:createdOn + date: + is_a: provenance_property + slot_uri: dcterms:date + multivalued: true + description: when the term was updated + close_mappings: + - pav:authoredOn + source: + is_a: provenance_property + slot_uri: dcterms:source + multivalued: true + exact_mappings: + - http://purl.org/dc/terms/source + - oio:source + created_by: + is_a: provenance_property + slot_uri: oio:created_by + deprecated: proposed obsoleted by OMO group 2022-04-12 + deprecated_element_has_exact_replacement: creator + creation_date: + is_a: provenance_property + slot_uri: oio:creation_date + multivalued: true + deprecated: proposed obsoleted by OMO group 2022-04-12 + deprecated_element_has_exact_replacement: created + todos: + - restrict range + date_retrieved: + is_a: provenance_property + slot_uri: oio:date_retrieved + editor_note: + is_a: provenance_property + slot_uri: IAO:0000116 + multivalued: true + range: narrative text + term_editor: + is_a: provenance_property + slot_uri: IAO:0000117 + multivalued: true + definition_source: + is_a: provenance_property + slot_uri: IAO:0000119 + multivalued: true + in_subset: + - obi permitted profile + todos: + - restrict range + curator_note: + is_a: provenance_property + slot_uri: IAO:0000232 + multivalued: true + term_tracker_item: + is_a: provenance_property + slot_uri: IAO:0000233 + multivalued: true + range: NamedObject + ontology_term_requester: + is_a: provenance_property + slot_uri: IAO:0000234 + imported_from: + is_a: provenance_property + slot_uri: IAO:0000412 + multivalued: true + range: NamedIndividual + has_axiom_label: + is_a: provenance_property + slot_uri: IAO:0010000 + range: Thing + + + # shortcuts + shortcut_annotation_property: + abstract: true + + disconnected_from: + is_a: shortcut_annotation_property + #slot_uri: obo:envo#disconnected_from + range: Class + + + # QC metadata + excluded_axiom: + abstract: true + excluded_from_QC_check: + is_a: excluded_axiom + #slot_uri: obo:mondo#excluded_from_qc_check + range: Thing + excluded_subClassOf: + is_a: excluded_axiom + #slot_uri: obo:mondo#excluded_subClassOf + multivalued: true + range: Class + excluded_synonym: + is_a: excluded_axiom + #slot_uri: obo:mondo#excluded_synonym + multivalued: true + exact_mappings: + - skos:hiddenSynonym + should_conform_to: + is_a: excluded_axiom + #slot_uri: obo:mondo#should_conform_to + range: Thing + + # metaclass properties + has_rank: + #slot_uri: obo:ncbitaxon#has_rank + exact_mappings: + - obo:ncbitaxon/subsets/taxslim#has_rank + range: Thing + + # synonyms and aliases + alternative_term: + slot_uri: IAO:0000118 + multivalued: true + exact_mappings: + - skos:altLabel + in_subset: + - allotrope permitted profile ## allotrope uses skos + ISA_alternative_term: + is_a: alternative_term + slot_uri: OBI:0001847 + IEDB_alternative_term: + is_a: alternative_term + slot_uri: OBI:9991118 + OBO_foundry_unique_label: + is_a: alternative_term + slot_uri: IAO:0000589 + todos: + - add uniquekey + + synonym: + is_a: alternative_term + slot_uri: OIO:hasSynonym + range: label type + multivalued: true + abstract: true + # provenance + editor_preferred_term: + is_a: alternative_term + in_subset: + - obi permitted profile + slot_uri: IAO:0000111 + multivalued: true + has_exact_synonym: + is_a: synonym + slot_uri: oio:hasExactSynonym + multivalued: true + range: label type + disjoint_with: + - label + + has_narrow_synonym: + is_a: synonym + slot_uri: oio:hasNarrowSynonym + multivalued: true + range: label type + has_related_synonym: + slot_uri: oio:hasRelatedSynonym + multivalued: true + range: label type + has_broad_synonym: + is_a: synonym + slot_uri: oio:hasBroadSynonym + multivalued: true + range: label type + has_synonym_type: + slot_uri: oio:hasSynonymType + multivalued: true + range: AnnotationProperty + has_obo_namespace: + slot_uri: oio:hasOBONamespace + multivalued: true + + in_subset: + slot_uri: oio:inSubset + multivalued: true + range: Subset + description: >- + Maps an ontology element to a subset it belongs to + + # reification + + reification_predicate: + abstract: true + + + annotatedProperty: + is_a: reification_predicate + slot_uri: owl:annotatedProperty + relational_role: PREDICATE + exact_mappings: + - rdf:predicate + range: AnnotationProperty + annotatedSource: + is_a: reification_predicate + slot_uri: owl:annotatedSource + relational_role: SUBJECT + range: NamedObject + exact_mappings: + - rdf:subject + todos: + - restrict range + annotatedTarget: + is_a: reification_predicate + relational_role: OBJECT + exact_mappings: + - rdf:object + slot_uri: owl:annotatedTarget + todos: + - restrict range + range: Any + + imports: + slot_uri: owl:imports + + # logical predicates + # TODO: import these + + logical_predicate: + abstract: true + + cardinality: + is_a: logical_predicate + slot_uri: owl:cardinality + complementOf: + is_a: logical_predicate + slot_uri: owl:complementOf + todos: + - restrict range + disjointWith: + is_a: logical_predicate + slot_uri: owl:disjointWith + multivalued: true + range: Class + distinctMembers: + is_a: logical_predicate + slot_uri: owl:distinctMembers + range: Thing + equivalentClass: + is_a: logical_predicate + mixins: + - match_aspect + slot_uri: owl:equivalentClass + multivalued: true + todos: + - restrict range + range: ClassExpression + sameAs: + is_a: logical_predicate + mixins: + - match_aspect + slot_uri: owl:sameAs + multivalued: true + todos: + - restrict range + range: Thing + equivalentProperty: + is_a: logical_predicate + mixins: + - match_aspect + slot_uri: owl:equivalentProperty + multivalued: true + range: Property + hasValue: + is_a: logical_predicate + slot_uri: owl:hasValue + todos: + - restrict range + range: Any + intersectionOf: + is_a: logical_predicate + slot_uri: owl:intersectionOf + todos: + - restrict range + range: ClassExpression + inverseOf: + is_a: logical_predicate + slot_uri: owl:inverseOf + todos: + - restrict range + range: Property + maxQualifiedCardinality: + is_a: logical_predicate + slot_uri: owl:maxQualifiedCardinality + range: integer + members: + is_a: logical_predicate + slot_uri: owl:members + range: Thing + minCardinality: + is_a: logical_predicate + slot_uri: owl:minCardinality + range: integer + minQualifiedCardinality: + is_a: logical_predicate + slot_uri: owl:minQualifiedCardinality + range: integer + onClass: + is_a: logical_predicate + slot_uri: owl:onClass + range: ClassExpression + onProperty: + is_a: logical_predicate + slot_uri: owl:onProperty + multivalued: true + range: PropertyExpression + oneOf: + is_a: logical_predicate + slot_uri: owl:oneOf + range: ClassExpression + propertyChainAxiom: + is_a: logical_predicate + slot_uri: owl:propertyChainAxiom + multivalued: true + todos: + - restrict range + qualifiedCardinality: + is_a: logical_predicate + slot_uri: owl:qualifiedCardinality + allValuesFrom: + is_a: logical_predicate + slot_uri: owl:allValuesFrom + todos: + - restrict range + someValuesFrom: + is_a: logical_predicate + slot_uri: owl:someValuesFrom + multivalued: true + todos: + - restrict range + unionOf: + is_a: logical_predicate + slot_uri: owl:unionOf + domain: + is_a: logical_predicate + slot_uri: rdfs:domain + multivalued: true + range: Class + range: + is_a: logical_predicate + slot_uri: rdfs:range + multivalued: true + range: Class + isDefinedBy: + slot_uri: rdfs:isDefinedBy + range: Ontology + close_mappings: + - pav:importedFrom + - dcterms:publisher + seeAlso: + slot_uri: rdfs:seeAlso + multivalued: true + range: Thing + type: + is_a: logical_predicate + slot_uri: rdf:type + multivalued: true + range: uriorcurie + designates_type: true + subClassOf: + is_a: logical_predicate + slot_uri: rdfs:subClassOf + multivalued: true + range: ClassExpression + + # DEPRECATED + + oboInOwl_id: + slot_uri: oio:id + #range: uriorcurie + range: string + #deprecated: redundant with URI + #deprecated_element_has_exact_replacement: id + + oboInOwl_ontology: + slot_uri: oio:ontology + deprecated: todo + deprecated_element_has_exact_replacement: ontology + + is_class_level: + slot_uri: oio:is_class_level + range: boolean + deprecated: deprecated oboInOwl property + is_cyclic: + slot_uri: oio:is_cyclic + range: boolean + deprecated: deprecated oboInOwl property + is_inferred: + slot_uri: oio:is_inferred + range: boolean + deprecated: deprecated oboInOwl property + is_metadata_tag: + slot_uri: oio:is_metadata_tag + range: boolean + deprecated: deprecated oboInOwl property + is_transitive: + slot_uri: oio:is_transitive + range: boolean + deprecated: deprecated oboInOwl property + deprecated_element_has_exact_replacement: TransitiveProperty + + notes: + slot_uri: oio:notes + multivalued: true + deprecated: deprecated oboInOwl property + shorthand: + slot_uri: oio:shorthand + multivalued: true + deprecated: deprecated oboInOwl property + url: + slot_uri: oio:url + deprecated: deprecated oboInOwl property + + evidence: + slot_uri: oio:evidence + deprecated: deprecated oboInOwl property + external_ontology: + slot_uri: oio:external_ontology + multivalued: true + deprecated: deprecated oboInOwl property + + # definition source + NCIT_definition_source: + slot_uri: NCIT:P378 + deprecated: use OMO over NCIT + deprecated_element_has_exact_replacement: definition_source + + # Term Type + NCIT_term_type: + slot_uri: NCIT:P383 + deprecated: use OMO over NCIT + deprecated_element_has_exact_replacement: category + + # Term source + NCIT_term_source: + slot_uri: NCIT:P384 + deprecated: use OMO over NCIT + deprecated_element_has_exact_replacement: isDefinedBy + + +types: + iri type: + typeof: uriorcurie + description: >- + An IRI + + CURIELiteral: + typeof: string + description: >- + A string representation of a CURIE + + URLLiteral: + typeof: string + description: >- + A URL representation of a CURIE + + tidy string: + typeof: string + pattern: "^[^\\s].*[^\\s]$" + + label type: + typeof: tidy string + + description: >- + A string that provides a human-readable name for an entity + + narrative text: + typeof: string + description: >- + A string that provides a human-readable description of something + +enums: + DefinitionConstraintComponent: + description: >- + An extension of SHACL constraint component for constraining definitions + source: https://philpapers.org/archive/SEPGFW.pdf + see_also: + - https://github.com/INCATools/ontology-access-kit/issues/305 + permissible_values: + DefinitionConstraint: + description: >- + A general problem with a definition + meaning: omoschema:DCC.Any + DefinitionPresence: + is_a: DefinitionConstraint + description: >- + An entity must have a definition + meaning: omoschema:DCC.S0 + Conventions: + is_a: DefinitionConstraint + description: >- + Definitions should conform to conventions + meaning: omoschema:DCC.S1 + Harmonized: + is_a: DefinitionConstraint + description: >- + Definitions should be harmonized + meaning: omoschema:DCC.S1.1 + GenusDifferentiaForm: + is_a: DefinitionConstraint + description: >- + A definition should follow the genus-differentia form + meaning: omoschema:DCC.S3 + SingleGenus: + is_a: GenusDifferentiaForm + description: >- + An entity must have a single genus + meaning: omoschema:DCC.S3.1 + Circularity: + is_a: DefinitionConstraint + description: >- + A definition must not be circular + meaning: omoschema:DCC.S7 + MatchTextAndLogical: + is_a: DefinitionConstraint + description: >- + Text definitions and logical forms should match + meaning: omoschema:DCC.S11 + \ No newline at end of file diff --git a/src/ontology/reports/obo-profile.tsv b/src/ontology/reports/obo-profile.tsv new file mode 100644 index 000000000..f960f68aa --- /dev/null +++ b/src/ontology/reports/obo-profile.tsv @@ -0,0 +1,1750 @@ +type subject severity instantiates predicate object object_str source info +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000006 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000006 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000028 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000028 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000029 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000029 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000030 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000030 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000036 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000036 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000054 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000054 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000069 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000069 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000072 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000072 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000076 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000076 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000078 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000078 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000079 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000079 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000095 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000095 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000102 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000102 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000109 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000109 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000112 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000112 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000114 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000114 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000117 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000117 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000123 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000123 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000130 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000130 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000131 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000131 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000143 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000143 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000146 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000146 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000149 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000149 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000154 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000154 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000159 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000159 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000167 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000167 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000168 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000168 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000172 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000172 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000174 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000174 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000176 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000176 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000177 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000177 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000179 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000179 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000200 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000200 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000203 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000203 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000204 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000204 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000207 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000207 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000208 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000208 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000217 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000217 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000227 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000227 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000237 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000237 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000238 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000238 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000239 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000239 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000240 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000240 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000241 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000241 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000246 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000246 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000249 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000249 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000251 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000251 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000253 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000253 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000255 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000255 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000256 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000256 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000257 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000257 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000287 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000287 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000306 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000306 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000308 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000308 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000309 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000309 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000310 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000310 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000311 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000311 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000314 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000314 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000319 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000319 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000323 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000323 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000324 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000324 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000326 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000326 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000327 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000327 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000329 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000329 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000334 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000334 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000341 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000341 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000349 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000349 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000350 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000350 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000354 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000354 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000356 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000356 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000357 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000357 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000367 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000367 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000376 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000376 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000377 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000377 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000378 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000378 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000379 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000379 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000383 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000383 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000384 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000384 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000386 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000386 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000389 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000389 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000390 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000390 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000397 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000397 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000406 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000406 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000408 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000408 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000410 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000410 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000416 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000416 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000417 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000417 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000420 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000420 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000423 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000423 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000428 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000428 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000435 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000435 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000436 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000436 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000443 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000443 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000445 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000445 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000447 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000447 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000452 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000452 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000456 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000456 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000457 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000457 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000460 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000460 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000470 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000470 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000489 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000489 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000490 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000490 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000520 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000520 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000521 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000521 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000529 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000529 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000532 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000532 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000544 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000544 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000551 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000551 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000555 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000555 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000567 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000567 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000611 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000611 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000618 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000618 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000619 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000619 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000661 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000661 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000662 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000662 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000666 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000666 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000676 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000676 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000678 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000678 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000684 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000684 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000687 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000687 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000690 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000690 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000691 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000691 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000694 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000694 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000697 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000697 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000702 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000702 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000705 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000705 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000707 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000707 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000709 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000709 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000712 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000712 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000713 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000713 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000719 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000719 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000720 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000720 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000721 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000721 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000722 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000722 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000725 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000725 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000732 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000732 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0000995 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0000995 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0001012 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0001012 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0001019 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0001019 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0001030 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0001030 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0001658 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0001658 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002551 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002551 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002552 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002552 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002579 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002579 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002581 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002581 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002598 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002598 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002602 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002602 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002621 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002621 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002631 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002631 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0002632 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0002632 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0007019 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0007019 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0008021 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0008021 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0008028 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0008028 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0008035 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0008035 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010006 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010006 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010007 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010007 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010008 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010008 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010009 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010009 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010010 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010010 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010013 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010013 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010014 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010014 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010020 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010020 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0010021 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0010021 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0011025 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0011025 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0011028 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0011028 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0013000 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0013000 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:0017509 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:0017509 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000001 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000001 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000022 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000022 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000042 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000042 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000050 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000050 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000073 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000073 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000082 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000082 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000083 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000083 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000085 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000085 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000090 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000090 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000123 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000123 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000143 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000143 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000182 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000182 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000217 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000217 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000222 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000222 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000236 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000236 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000239 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000239 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000245 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000245 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000271 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000271 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000272 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000272 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000274 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000274 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000510 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000510 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000550 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000550 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000596 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000596 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000600 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000600 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000601 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000601 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000606 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000606 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000612 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000612 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000615 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000615 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000616 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000616 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000617 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000617 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000618 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000618 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000681 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000681 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000682 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000682 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000691 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000691 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000692 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000692 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000693 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000693 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000695 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000695 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000696 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000696 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000697 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000697 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000699 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000699 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000702 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000702 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000703 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000703 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000706 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000706 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000708 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000708 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000714 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000714 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000715 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000715 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000718 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000718 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000719 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000719 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000720 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000720 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000721 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000721 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000746 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000746 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000768 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000768 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000803 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000803 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000804 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000804 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000838 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000838 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000839 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000839 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000849 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000849 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000850 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000850 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000854 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000854 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000891 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000891 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000892 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000892 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000893 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000893 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000909 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000909 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1000979 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1000979 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001005 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001005 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001006 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001006 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001009 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001009 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001016 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001016 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001021 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001021 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001036 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001036 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001045 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001045 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001052 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001052 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001064 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001064 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001066 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001066 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001068 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001068 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001096 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001096 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001097 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001097 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001099 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001099 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001100 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001100 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001123 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001123 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001124 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001124 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001126 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001126 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001127 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001127 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001135 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001135 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001138 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001138 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001142 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001142 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001145 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001145 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001209 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001209 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001210 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001210 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001213 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001213 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001214 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001214 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001216 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001216 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001217 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001217 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001220 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001220 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001221 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001221 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001223 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001223 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001224 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001224 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001286 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001286 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001287 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001287 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001319 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001319 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001320 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001320 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001430 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001430 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001431 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001431 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001432 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001432 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001567 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001567 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:1001568 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:1001568 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:4023032 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:4023032 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:4023039 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:4023039 +http://www.w3.org/ns/shacl#MinCountConstraintComponent CL:4023057 WARNING None IAO:0000115 None None sqlite:cl-simple.db Missing slot (definition) for CL:4023057 +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4023106 ERROR None rdfs:comment None None sqlite:cl-simple.db Incorrect datatype for comment expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000025 ERROR None foaf:depiction None None sqlite:cl-simple.db Incorrect object type for depiction range = Image should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000066 ERROR None foaf:depiction None None sqlite:cl-simple.db Incorrect object type for depiction range = Image should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000187 ERROR None foaf:depiction None None sqlite:cl-simple.db Incorrect object type for depiction range = Image should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000210 ERROR None foaf:depiction None None sqlite:cl-simple.db Incorrect object type for depiction range = Image should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000540 ERROR None foaf:depiction None None sqlite:cl-simple.db Incorrect object type for depiction range = Image should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000548 ERROR None foaf:depiction None None sqlite:cl-simple.db Incorrect object type for depiction range = Image should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008049 ERROR None foaf:depiction None None sqlite:cl-simple.db Incorrect object type for depiction range = Image should_be_iri = True +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0000746 WARNING None oio:hasAlternativeId None None sqlite:cl-simple.db Deprecated slot (has_alternative_id) for CL:0000746 +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0002638 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003002 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003002 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003003 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003003 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003004 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003004 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003005 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003005 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003006 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003006 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003007 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003007 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003008 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003008 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003009 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003009 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003010 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003010 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003011 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003011 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003012 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003012 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003017 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003017 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003018 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003018 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003020 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003020 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003021 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003021 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003022 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003022 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003023 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003023 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003024 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003024 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003025 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003025 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003026 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003026 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003027 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003027 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003028 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003028 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003029 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003029 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003030 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003030 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003031 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003031 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003032 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003032 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003033 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003033 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003034 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003034 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003035 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003035 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003036 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003036 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003037 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003037 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003038 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003038 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003039 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003039 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003040 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003040 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003041 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003041 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003042 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003042 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003043 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003043 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003044 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003044 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003045 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003045 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003046 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003046 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003047 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003047 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003048 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003049 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003050 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0003051 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004115 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004115 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004116 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004116 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004117 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004117 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004119 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004119 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004120 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004120 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004121 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004121 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004124 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004124 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004125 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004125 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004126 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004126 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004137 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004137 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004138 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004138 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004139 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004139 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004161 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004162 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004183 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004183 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004213 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004213 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004214 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004214 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004215 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004215 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004216 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004216 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004217 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004217 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004218 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004218 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004219 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004219 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004220 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004220 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004221 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004221 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004222 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004222 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004223 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004223 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004224 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004224 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004225 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004225 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004226 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004226 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004227 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004227 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004228 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004228 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004229 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004229 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004230 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004230 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004231 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004231 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004232 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004232 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004233 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004233 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004234 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004234 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004235 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004235 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004236 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004236 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004237 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004237 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004238 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004238 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004239 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004239 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004240 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004240 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004241 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004241 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004242 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004242 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004243 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004243 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004244 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004244 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004245 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004245 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004246 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004246 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004247 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004250 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004250 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004251 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004251 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004252 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004252 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004253 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-5260-9315 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0004253 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0017010 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:0017011 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023032 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023033 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023039 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023057 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023059 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023060 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023061 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023062 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023063 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023064 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023068 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023072 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023073 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023074 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023079 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023158 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023159 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023160 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023161 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023162 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023163 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023164 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023168 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023169 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023170 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023171 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023181 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023187 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023188 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7655-4833 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023188 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023189 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7655-4833 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4023189 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0001-7258-9596 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4029001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4029002 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4029003 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4030055 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0003-3065-9183 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4030056 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0003-3065-9183 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4030066 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-1425-877X does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4032000 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4032001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = http://orcid.org/0000-0001-7476-6306 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4032001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = http://orcid.org/0000-0001-5501-853X does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4032001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4033013 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#PatternConstraintComponent CL:4033024 ERROR None dcterms:contributor None None sqlite:cl-simple.db Pattern violation: contributor = https://orcid.org/0000-0002-9185-3994 does not conform to ^orcid:[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}(?:[0-9]|X)|^$|^$|^($ +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003002 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003002 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003003 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003003 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003004 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003004 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003005 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003005 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003006 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003006 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003007 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003007 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003008 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003008 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003009 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003009 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003010 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003010 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003011 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003011 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003012 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003012 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003017 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003017 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003018 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003018 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003020 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003020 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003021 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003021 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003022 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003022 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003023 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003023 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003024 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003024 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003025 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003025 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003026 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003026 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003027 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003027 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003028 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003028 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003029 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003029 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003030 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003030 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003031 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003031 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003032 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003032 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003033 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003033 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003034 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003034 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003035 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003035 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003036 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003036 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003037 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003037 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003038 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003038 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003039 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003039 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003040 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003040 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003041 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003041 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003042 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003042 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003043 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003043 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003044 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003044 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003045 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003045 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003046 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003046 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003047 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003047 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003048 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003049 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003050 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0003051 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004115 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004115 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004116 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004116 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004117 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004117 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004119 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004119 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004120 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004120 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004121 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004121 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004124 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004124 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004125 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004125 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004126 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004126 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004137 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004137 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004138 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004138 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004139 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004139 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004161 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004162 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004183 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004183 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004213 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004213 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004214 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004214 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004215 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004215 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004216 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004216 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004217 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004217 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004218 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004218 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004219 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004219 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004220 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004220 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004221 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004221 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004222 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004222 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004223 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004223 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004224 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004224 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004225 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004225 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004226 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004226 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004227 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004227 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004228 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004228 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004229 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004229 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004230 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004230 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004231 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004231 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004232 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004232 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004233 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004233 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004234 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004234 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004235 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004235 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004236 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004236 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004237 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004237 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004238 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004238 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004239 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004239 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004240 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004240 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004241 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004241 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004242 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004242 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004243 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004243 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004244 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004244 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004245 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004245 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004246 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004246 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004247 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004250 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004250 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004251 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004251 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004252 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004252 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004253 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0004253 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4023188 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4023188 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4023189 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4023189 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030055 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030056 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030066 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4032001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4032001 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033024 ERROR None dcterms:contributor None None sqlite:cl-simple.db Incorrect object type for contributor range = NamedObject should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000706 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001061 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001063 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001064 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001065 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001067 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001068 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001069 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001071 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0001087 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009081 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009082 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009083 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009084 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009085 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009086 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009087 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009088 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009089 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009090 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009091 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009092 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009093 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009094 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009095 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009096 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009097 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009098 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009099 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009100 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009101 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009102 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009103 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009104 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009105 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009106 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009107 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009108 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009109 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009110 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009111 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009112 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009113 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009114 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017010 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017011 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019001 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019002 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019003 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019015 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019017 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019018 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019019 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019020 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019021 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019022 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019026 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019028 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019029 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019031 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0019032 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0700009 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4029001 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4029002 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4029003 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030001 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030003 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030004 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030005 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030006 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030007 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030008 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030009 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030010 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030011 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030012 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030013 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030014 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030015 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030016 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030017 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030018 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030019 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030020 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030021 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030022 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030023 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030024 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030025 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030026 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030027 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030028 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030029 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030030 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030031 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030032 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030033 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030034 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030035 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030036 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030037 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030038 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030039 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030040 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030041 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030042 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030043 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030047 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030048 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030049 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030050 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030051 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030052 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030053 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030054 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030055 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030056 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030057 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030058 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030059 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030060 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030061 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030062 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030063 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030064 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030065 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030066 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030067 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030068 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033014 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033015 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033016 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033017 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033018 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033019 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033020 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033021 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033022 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033023 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033024 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033025 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033026 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033027 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033028 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033029 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033030 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033031 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033032 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033033 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033034 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033035 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033036 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033037 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033038 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033039 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033040 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033041 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033042 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033043 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033044 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033045 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033046 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033047 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033048 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033049 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033050 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033051 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033052 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033053 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033054 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033055 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033056 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033057 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033058 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033059 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033060 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033062 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033063 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033064 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4040000 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4040001 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4040002 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4040003 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4040004 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4040005 ERROR None dcterms:date None None sqlite:cl-simple.db Incorrect datatype for date expected: xsd:string for string +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017002 WARNING None oio:created_by None None sqlite:cl-simple.db Deprecated slot (created_by) for CL:0017002 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017003 WARNING None oio:created_by None None sqlite:cl-simple.db Deprecated slot (created_by) for CL:0017003 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017004 WARNING None oio:created_by None None sqlite:cl-simple.db Deprecated slot (created_by) for CL:0017004 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017005 WARNING None oio:created_by None None sqlite:cl-simple.db Deprecated slot (created_by) for CL:0017005 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017006 WARNING None oio:created_by None None sqlite:cl-simple.db Deprecated slot (created_by) for CL:0017006 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017009 WARNING None oio:created_by None None sqlite:cl-simple.db Deprecated slot (created_by) for CL:0017009 +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017002 ERROR None oio:created_by None None sqlite:cl-simple.db Incorrect object type for created_by range = string should_be_iri = False +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017003 ERROR None oio:created_by None None sqlite:cl-simple.db Incorrect object type for created_by range = string should_be_iri = False +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017004 ERROR None oio:created_by None None sqlite:cl-simple.db Incorrect object type for created_by range = string should_be_iri = False +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017005 ERROR None oio:created_by None None sqlite:cl-simple.db Incorrect object type for created_by range = string should_be_iri = False +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017006 ERROR None oio:created_by None None sqlite:cl-simple.db Incorrect object type for created_by range = string should_be_iri = False +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0017009 ERROR None oio:created_by None None sqlite:cl-simple.db Incorrect object type for created_by range = string should_be_iri = False +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0001034 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0001034 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0001035 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0001035 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0001060 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0001060 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002000 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002000 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002001 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002001 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002002 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002002 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002003 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002003 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002004 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002004 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002005 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002005 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002006 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002006 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002007 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002007 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002008 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002008 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002009 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002009 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002010 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002010 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002011 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002011 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002012 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002012 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002013 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002013 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002014 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002014 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002015 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002015 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002016 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002016 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002017 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002017 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002018 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002018 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002019 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002019 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002020 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002020 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002021 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002021 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002022 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002022 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002023 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002023 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002024 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002024 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002025 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002025 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002026 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002026 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002027 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002027 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002028 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002028 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002029 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002029 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002030 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002030 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002031 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002031 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002032 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002032 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002033 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002033 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002034 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002034 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002035 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002035 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002036 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002036 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002037 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002037 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002038 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002038 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002039 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002039 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002040 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002040 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002041 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002041 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002042 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002042 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002043 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002043 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002044 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002044 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002045 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002045 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002046 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002046 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002047 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002047 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002048 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002048 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002049 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002049 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002050 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002050 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002051 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002051 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002052 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002052 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002053 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002053 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002054 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002054 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002055 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002055 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002056 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002056 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002057 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002057 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002058 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002058 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002059 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002059 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002060 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002060 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002061 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002061 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002062 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002062 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002063 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002063 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002064 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002064 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002066 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002066 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002067 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002067 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002068 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002068 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002069 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002069 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002070 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002070 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002071 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002071 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002072 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002072 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002073 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002073 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002074 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002074 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002075 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002075 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002076 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002076 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002077 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002077 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002078 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002078 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002079 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002079 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002080 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002080 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002081 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002081 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002082 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002082 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002083 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002083 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002084 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002084 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002085 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002085 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002086 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002086 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002087 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002087 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002088 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002088 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002089 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002089 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002090 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002090 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002091 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002091 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002092 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002092 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002093 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002093 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002094 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002094 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002095 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002095 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002096 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002096 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002097 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002097 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002098 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002098 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002099 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002099 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002100 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002100 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002124 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002124 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002125 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002125 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002126 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002126 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002127 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002127 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002129 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002129 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002130 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002130 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002131 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002131 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002132 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002132 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002133 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002133 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002134 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002134 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002135 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002135 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002136 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002136 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002137 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002137 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002138 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002138 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002139 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002139 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002140 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002140 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002141 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002141 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002142 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002142 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002143 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002143 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002144 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002144 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002145 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002145 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002146 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002146 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002147 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002147 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002148 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002148 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002149 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002149 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002150 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002150 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002151 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002151 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002152 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002152 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002153 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002153 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002154 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002154 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002155 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002155 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002157 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002157 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002158 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002158 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002159 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002159 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002160 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002160 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002161 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002161 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002162 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002162 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002163 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002163 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002164 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002164 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002165 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002165 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002166 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002166 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002167 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002167 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002168 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002168 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002169 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002169 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002170 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002170 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002171 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002171 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002172 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002172 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002173 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002173 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002174 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002174 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002175 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002175 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002176 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002176 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002177 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002177 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002178 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002178 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002179 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002179 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002180 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002180 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002181 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002181 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002182 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002182 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002183 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002183 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002184 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002184 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002187 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002187 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002188 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002188 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002189 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002189 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002190 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002190 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002191 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002191 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002192 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002192 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002193 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002193 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002194 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002194 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002195 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002195 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002196 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002196 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002197 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002197 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002198 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002198 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002199 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002199 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002200 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002200 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002201 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002201 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002202 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002202 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002203 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002203 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002204 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002204 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002205 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002205 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002206 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002206 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002207 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002207 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002208 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002208 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002209 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002209 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002210 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002210 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002211 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002211 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002212 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002212 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002213 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002213 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002214 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002214 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002215 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002215 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002216 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002216 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002217 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002217 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002218 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002218 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002219 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002219 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002220 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002220 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002221 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002221 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002222 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002222 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002223 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002223 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002224 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002224 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002225 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002225 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002226 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002226 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002227 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002227 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002228 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002228 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002229 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002229 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002231 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002231 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002232 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002232 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002233 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002233 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002234 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002234 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002235 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002235 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002236 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002236 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002237 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002237 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002238 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002238 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002239 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002239 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002240 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002240 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002241 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002241 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002242 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002242 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002243 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002243 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002244 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002244 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002245 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002245 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002246 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002246 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002247 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002247 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002248 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002248 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002249 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002249 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002250 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002250 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002251 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002251 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002252 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002252 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002253 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002253 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002254 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002254 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002255 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002255 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002256 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002256 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002257 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002257 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002258 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002258 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002259 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002259 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002260 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002260 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002261 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002261 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002262 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002262 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002263 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002263 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002264 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002264 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002265 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002265 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002266 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002266 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002267 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002267 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002268 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002268 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002269 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002269 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002270 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002270 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002271 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002271 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002272 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002272 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002273 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002273 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002274 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002274 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002275 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002275 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002276 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002276 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002277 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002277 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002278 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002278 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002279 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002279 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002280 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002280 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002281 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002281 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002282 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002282 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002283 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002283 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002284 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002284 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002285 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002285 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002286 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002286 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002287 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002287 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002288 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002288 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002289 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002289 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002290 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002290 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002291 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002291 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002292 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002292 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002293 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002293 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002294 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002294 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002295 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002295 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002296 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002296 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002297 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002297 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002298 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002298 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002299 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002299 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002300 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002300 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002301 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002301 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002302 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002302 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002303 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002303 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002304 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002304 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002307 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002307 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002308 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002308 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002309 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002309 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002310 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002310 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002311 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002311 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002312 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002312 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002313 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002313 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002314 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002314 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002315 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002315 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002316 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002316 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002317 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002317 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002318 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002318 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002319 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002319 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002320 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002320 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002321 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002321 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002322 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002322 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002323 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002323 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002324 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002324 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002325 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002325 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002326 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002326 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002327 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002327 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002328 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002328 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002329 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002329 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002330 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002330 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002332 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002332 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002333 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002333 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002334 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002334 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002335 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002335 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002336 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002336 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002337 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002337 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002338 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002338 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002339 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002339 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002340 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002340 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002341 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002341 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002342 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002342 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002343 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002343 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002344 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002344 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002345 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002345 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002346 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002346 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002347 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002347 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002348 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002348 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002349 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002349 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002350 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002350 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002351 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002351 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002352 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002352 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002353 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002353 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002354 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002354 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002355 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002355 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002356 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002356 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002357 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002357 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002358 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002358 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002359 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002359 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002360 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002360 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002361 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002361 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002362 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002362 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002363 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002363 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002364 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002364 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002365 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002365 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002366 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002366 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002367 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002367 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002368 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002368 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002369 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002369 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002370 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002370 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002371 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002371 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002372 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002372 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002373 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002373 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002374 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002374 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002375 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002375 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002376 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002376 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002377 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002377 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002378 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002378 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002379 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002379 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002380 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002380 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002381 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002381 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002382 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002382 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002393 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002393 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002394 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002394 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002395 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002395 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002396 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002396 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002397 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002397 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002398 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002398 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002399 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002399 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002400 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002400 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002401 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002401 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002402 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002402 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002403 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002403 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002404 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002404 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002405 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002405 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002406 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002406 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002407 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002407 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002408 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002408 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002409 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002409 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002410 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002410 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002411 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002411 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002412 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002412 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002413 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002413 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002414 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002414 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002415 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002415 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002416 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002416 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002417 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002417 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002418 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002418 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002419 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002419 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002420 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002420 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002421 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002421 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002422 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002422 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002423 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002423 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002424 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002424 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002425 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002425 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002426 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002426 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002427 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002427 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002428 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002428 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002429 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002429 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002430 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002430 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002431 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002431 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002432 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002432 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002433 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002433 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002434 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002434 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002435 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002435 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002436 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002436 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002437 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002437 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002438 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002438 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002439 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002439 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002440 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002440 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002441 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002441 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002442 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002442 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002443 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002443 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002444 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002444 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002445 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002445 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002446 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002446 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002447 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002447 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002448 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002448 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002449 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002449 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002450 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002450 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002451 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002451 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002453 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002453 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002454 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002454 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002455 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002455 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002456 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002456 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002457 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002457 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002458 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002458 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002459 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002459 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002460 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002460 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002461 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002461 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002462 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002462 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002463 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002463 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002464 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002464 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002465 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002465 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002466 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002466 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002467 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002467 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002468 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002468 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002469 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002469 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002470 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002470 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002471 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002471 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002472 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002472 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002473 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002473 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002474 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002474 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002475 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002475 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002476 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002476 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002477 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002477 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002478 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002478 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002479 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002479 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002480 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002480 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002481 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002481 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002482 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002482 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002483 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002483 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002484 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002484 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002485 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002485 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002486 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002486 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002487 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002487 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002488 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002488 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002489 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002489 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002490 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002490 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002491 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002491 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002492 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002492 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002493 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002493 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002494 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002494 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002495 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002495 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002496 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002496 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002497 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002497 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002498 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002498 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002499 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002499 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002500 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002500 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002501 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002501 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002502 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002502 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002503 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002503 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002504 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002504 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002505 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002505 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002506 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002506 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002507 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002507 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002508 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002508 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002509 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002509 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002510 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002510 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002511 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002511 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002512 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002512 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002513 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002513 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002514 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002514 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002515 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002515 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002516 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002516 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002517 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002517 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002518 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002518 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002519 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002519 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002520 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002520 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002521 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002521 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002522 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002522 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002523 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002523 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002524 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002524 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002525 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002525 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002535 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002535 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002536 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002536 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002537 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002537 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002538 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002538 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002539 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002539 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002540 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002540 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002541 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002541 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002543 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002543 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002544 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002544 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002545 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002545 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002546 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002546 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002547 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002547 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002548 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002548 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002549 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002549 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002550 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002550 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002551 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002551 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002552 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002552 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002553 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002553 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002554 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002554 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002555 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002555 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002556 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002556 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002557 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002557 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002558 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002558 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002559 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002559 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002560 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002560 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002561 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002561 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002562 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002562 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002563 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002563 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002564 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002564 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002565 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002565 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002566 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002566 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002567 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002567 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002568 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002568 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002569 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002569 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002570 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002570 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002571 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002571 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002572 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002572 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002573 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002573 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002574 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002574 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002575 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002575 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002576 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002576 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002577 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002577 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002578 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002578 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002579 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002579 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002580 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002580 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002581 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002581 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002582 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002582 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002583 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002583 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002585 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002585 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002586 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002586 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002588 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002588 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002589 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002589 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002590 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002590 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002591 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002591 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002592 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002592 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002593 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002593 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002594 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002594 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002595 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002595 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002596 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002596 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002597 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002597 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002598 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002598 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002599 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002599 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002600 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002600 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002601 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002601 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002602 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002602 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002603 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002603 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002604 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002604 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002605 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002605 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002606 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002606 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002607 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002607 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002608 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002608 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002609 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002609 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002610 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002610 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002611 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002611 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002612 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002612 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002613 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002613 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002614 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002614 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002615 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002615 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002616 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002616 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002617 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002617 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002618 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002618 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002619 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002619 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002620 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002620 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002621 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002621 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002622 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002622 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002623 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002623 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002624 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002624 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002625 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002625 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002630 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002630 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002631 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002631 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002632 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002632 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002633 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002633 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002634 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002634 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002635 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002635 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002636 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002636 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002637 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002637 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002638 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002638 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002639 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002639 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002640 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002640 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002641 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002641 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002642 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002642 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002643 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002643 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002644 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002644 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002645 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002645 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002646 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002646 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002647 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002647 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002648 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002648 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002649 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002649 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002650 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002650 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002651 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002651 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002652 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002652 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002653 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002653 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002654 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002654 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002655 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002655 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002656 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002656 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002657 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002657 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002658 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002658 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002659 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002659 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002660 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002660 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002661 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002661 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002662 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002662 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002663 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002663 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002664 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002664 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002665 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002665 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002666 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002666 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002667 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002667 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002668 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002668 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002669 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002669 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002670 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002670 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002671 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002671 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002672 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002672 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002673 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002673 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002674 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002674 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002675 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002675 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002676 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002676 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002677 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002677 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002678 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002678 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002679 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002679 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002680 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002680 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0002681 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0002681 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0005020 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0005020 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0005021 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0005021 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0005022 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0005022 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007000 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007000 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007001 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007001 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007002 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007002 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007003 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007003 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007004 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007004 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007005 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007005 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007006 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007006 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007007 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007007 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007008 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007008 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007009 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007009 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007010 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007010 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007011 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007011 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007014 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007014 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007015 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007015 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0007016 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0007016 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008027 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008027 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008028 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008028 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008029 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008029 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008030 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008030 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008033 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008033 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008034 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008034 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008035 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008035 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008036 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008036 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008038 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008038 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008039 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008039 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008046 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008046 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008047 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008047 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008048 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008048 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0008049 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0008049 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017500 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017500 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017501 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017501 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017502 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017502 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017503 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017503 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017504 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017504 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017505 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017505 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017506 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017506 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017507 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017507 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:0017508 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:0017508 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000000 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000000 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000001 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000001 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000002 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000002 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000004 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000004 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000005 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000005 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000006 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000006 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000007 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000007 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000008 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000008 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000009 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000009 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000010 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000010 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000011 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000011 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000012 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000012 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000013 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000013 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000014 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000014 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000015 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000015 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000016 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000016 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000017 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000017 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000018 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000018 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000019 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000019 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000020 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000020 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000021 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000021 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000022 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000022 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000023 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000023 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000024 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000024 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000025 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000025 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000026 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000026 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000027 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000027 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000028 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000028 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000029 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000029 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000030 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000030 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000031 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000031 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000032 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000032 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000033 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000033 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000034 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000034 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000035 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000035 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000036 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000036 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000037 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000037 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000038 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000038 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000039 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000039 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000040 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000040 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000041 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000041 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000042 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000042 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000043 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000043 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000044 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000044 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000045 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000045 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000046 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000046 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000047 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000047 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000048 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000048 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000049 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000049 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000050 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000050 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000051 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000051 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000052 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000052 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000053 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000053 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000055 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000055 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000056 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000056 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000057 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000057 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000058 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000058 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000059 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000059 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000060 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000060 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000061 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000061 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000062 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000062 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000063 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000063 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000064 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000064 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000065 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000065 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000066 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000066 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000067 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000067 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000068 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000068 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000069 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000069 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000070 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000070 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000071 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000071 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000072 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000072 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000073 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000073 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000074 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000074 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000075 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000075 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000076 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000076 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000077 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000077 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000078 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000078 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000079 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000079 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000080 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000080 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000081 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000081 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000082 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000082 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000083 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000083 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000084 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000084 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000085 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000085 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000086 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000086 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000087 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000087 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000088 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000088 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000089 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000089 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000090 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000090 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000091 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000091 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000092 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000092 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000093 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000093 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000094 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000094 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000095 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000095 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000096 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000096 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:2000097 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:2000097 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:3000000 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:3000000 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:3000001 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:3000001 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:3000002 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:3000002 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:3000003 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:3000003 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:3000004 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:3000004 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4028001 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4028001 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4028002 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4028002 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4028003 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4028003 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4028004 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4028004 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4028006 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4028006 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4030000 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4030000 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4030002 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4030002 +https://w3id.org/linkml/validation-model/DeprecatedPropertyComponent CL:4033013 WARNING None oio:creation_date None None sqlite:cl-simple.db Deprecated slot (creation_date) for CL:4033013 +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008027 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008028 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008029 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008030 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008033 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008034 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008035 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008036 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008038 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008039 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008046 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008047 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008048 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0008049 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4028001 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4028002 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4028003 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4028004 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4028006 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030000 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030002 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4033013 ERROR None oio:creation_date None None sqlite:cl-simple.db Incorrect datatype for creation_date expected: xsd:string for string +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000015 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000134 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000432 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000525 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0000653 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0002195 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0002619 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0002619 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0005026 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009003 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009101 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009102 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009103 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009104 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009105 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009106 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0009115 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0010012 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:0010022 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:2000060 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#DatatypeConstraintComponent CL:4030030 ERROR None rdfs:seeAlso None None sqlite:cl-simple.db Incorrect object type for seeAlso range = Thing should_be_iri = True +http://www.w3.org/ns/shacl#ClosedConstraintComponent CL:0017005 ERROR None dce:date None None sqlite:cl-simple.db Unknown pred (dce:date) = None 2022-08-17T14:20:01Z +http://www.w3.org/ns/shacl#ClosedConstraintComponent CL:0017006 ERROR None dce:date None None sqlite:cl-simple.db Unknown pred (dce:date) = None 2022-08-17T14:30:32Z +http://www.w3.org/ns/shacl#ClosedConstraintComponent CL:0017009 ERROR None dce:date None None sqlite:cl-simple.db Unknown pred (dce:date) = None 2022-08-25T14:18:37Z +http://www.w3.org/ns/shacl#ClosedConstraintComponent CL:4040001 ERROR None oio:note None None sqlite:cl-simple.db Unknown pred (oio:note) = None Humans, mice and rats have a highly invasive (hemochorial) placentation. Horses have a non-invasive epitheliochorial placenta, except for the transient endometrial cup. +http://www.w3.org/ns/shacl#ClosedConstraintComponent CL:4040003 ERROR None oio:note None None sqlite:cl-simple.db Unknown pred (oio:note) = None According to PMID:1316350 this cell type does not yet produce surfactant. According to PMID:9109447 and PMID:12114192 this cell type produces low levels of surfactant that can be increased by administration of very low-density lipoproteins. This cell type is of medical relevance, as a central feature of the fetal respiratory distress syndrome seems to be the presence in the lung of abundant pre-type II alveolar epithelial cells (PMID:1316350). diff --git a/src/ontology/run.sh b/src/ontology/run.sh index 67f302863..4f07047bf 100755 --- a/src/ontology/run.sh +++ b/src/ontology/run.sh @@ -14,6 +14,8 @@ # # See README-editors.md for more details. +set -e + if [ -f run.sh.conf ]; then . ./run.sh.conf fi @@ -29,6 +31,22 @@ elif [ -f "$HOME/Library/Application Support/ontology-development-kit/github/tok GH_TOKEN=$(cat "$HOME/Library/Application Support/ontology-development-kit/github/token") fi +# SSH agent socket +# On macOS, we cannot use $SSH_AUTH_SOCK directly, +# we need to use a "magic" socket instead. +case "$(uname)" in +Darwin) + ODK_SSH_AUTH_SOCKET=/run/host-services/ssh-auth.sock + ;; +*) + ODK_SSH_AUTH_SOCKET=$SSH_AUTH_SOCK + ;; +esac +ODK_SSH_BIND= +if [ -n "$ODK_SSH_AUTH_SOCKET" ]; then + ODK_SSH_BIND=",$ODK_SSH_AUTH_SOCKET:/run/host-services/ssh-auth.sock" +fi + ODK_IMAGE=${ODK_IMAGE:-odkfull} TAG_IN_IMAGE=$(echo $ODK_IMAGE | awk -F':' '{ print $2 }') if [ -n "$TAG_IN_IMAGE" ]; then @@ -40,6 +58,17 @@ ODK_TAG=${ODK_TAG:-latest} ODK_JAVA_OPTS=${ODK_JAVA_OPTS:--Xmx16G} ODK_DEBUG=${ODK_DEBUG:-no} +ODK_USER_ID=${ODK_USER_ID:-$(id -u)} +ODK_GROUP_ID=${ODK_GROUP_ID:-$(id -g)} + +# Convert OWLAPI_* environment variables to the OWLAPI as Java options +# See http://owlcs.github.io/owlapi/apidocs_4/org/semanticweb/owlapi/model/parameters/ConfigurationOptions.html +# for a list of allowed options +OWLAPI_OPTIONS_NAMESPACE=org.semanticweb.owlapi.model.parameters.ConfigurationOptions +for owlapi_var in $(env | sed -n s/^OWLAPI_//p) ; do + ODK_JAVA_OPTS="$ODK_JAVA_OPTS -D$OWLAPI_OPTIONS_NAMESPACE.${owlapi_var%=*}=${owlapi_var#*=}" +done + TIMECMD= if [ x$ODK_DEBUG = xyes ]; then # If you wish to change the format string, take care of using @@ -48,8 +77,9 @@ if [ x$ODK_DEBUG = xyes ]; then echo "Running ${IMAGE} with ${ODK_JAVA_OPTS} of memory for ROBOT and Java-based pipeline steps." TIMECMD="/usr/bin/time -f ### DEBUG STATS ###\nElapsed time: %E\nPeak memory: %M kb" fi +rm -f tmp/debug.log -VOLUME_BIND=$PWD/../../:/work +VOLUME_BIND=$PWD/../../:/work$ODK_SSH_BIND WORK_DIR=/work/src/ontology if [ -n "$ODK_BINDS" ]; then @@ -59,14 +89,14 @@ fi if [ -n "$USE_SINGULARITY" ]; then singularity exec --cleanenv $ODK_SINGULARITY_OPTIONS \ - --env "ROBOT_JAVA_ARGS=$ODK_JAVA_OPTS,JAVA_OPTS=$ODK_JAVA_OPTS" \ + --env "ROBOT_JAVA_ARGS=$ODK_JAVA_OPTS,JAVA_OPTS=$ODK_JAVA_OPTS,SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock,ODK_USER_ID=$ODK_USER_ID,ODK_GROUP_ID=$ODK_GROUP_ID,ODK_DEBUG=$ODK_DEBUG" \ --bind $VOLUME_BIND \ -W $WORK_DIR \ docker://obolibrary/$ODK_IMAGE:$ODK_TAG $TIMECMD "$@" else BIND_OPTIONS="-v $(echo $VOLUME_BIND | sed 's/,/ -v /')" docker run $ODK_DOCKER_OPTIONS $BIND_OPTIONS -w $WORK_DIR \ - -e ROBOT_JAVA_ARGS="$ODK_JAVA_OPTS" -e JAVA_OPTS="$ODK_JAVA_OPTS" \ + -e ROBOT_JAVA_ARGS="$ODK_JAVA_OPTS" -e JAVA_OPTS="$ODK_JAVA_OPTS" -e SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock -e ODK_USER_ID=$ODK_USER_ID -e ODK_GROUP_ID=$ODK_GROUP_ID -e ODK_DEBUG=$ODK_DEBUG \ --rm -ti obolibrary/$ODK_IMAGE:$ODK_TAG $TIMECMD "$@" fi diff --git a/src/scripts/run-command.sh b/src/scripts/run-command.sh new file mode 100755 index 000000000..e694f27d4 --- /dev/null +++ b/src/scripts/run-command.sh @@ -0,0 +1,4 @@ +#!/bin/sh +ODK_DEBUG_FILE=${ODK_DEBUG_FILE:-tmp/debug.log} +echo "Command: sh $@" >> $ODK_DEBUG_FILE +/usr/bin/time -a -o $ODK_DEBUG_FILE -f "Elapsed time: %E\nPeak memory: %M kb" /bin/sh "$@" diff --git a/src/scripts/update_repo.sh b/src/scripts/update_repo.sh index 64c675e5b..6ed22cc3c 100644 --- a/src/scripts/update_repo.sh +++ b/src/scripts/update_repo.sh @@ -29,6 +29,7 @@ mkdir -p $ROOTDIR/.github/workflows cp -n target/$OID/.github/workflows/qc.yml $ROOTDIR/.github/workflows/qc.yml + cp target/$OID/.github/workflows/docs.yml $ROOTDIR/.github/workflows/docs.yml